| RichTextBoxTargetDelLinkClicked Delegate |
Namespace:
NLog.Windows.Forms
Assembly:
NLog.Windows.Forms (in NLog.Windows.Forms.dll) Version: 5.2.3+a6f5d4397ec11371a92ffd5b29f2da9844f01c95
Syntax public delegate void DelLinkClicked(
RichTextBoxTarget sender,
string linkText,
LogEventInfo logEvent
)
Public Delegate Sub DelLinkClicked (
sender As RichTextBoxTarget,
linkText As String,
logEvent As LogEventInfo
)
Dim instance As New DelLinkClicked(AddressOf HandlerMethod)
type DelLinkClicked =
delegate of
sender : RichTextBoxTarget *
linkText : string *
logEvent : LogEventInfo -> unit
Parameters
- sender
- Type: NLog.Windows.FormsRichTextBoxTarget
The target that caused the event - linkText
- Type: SystemString
Visible text of the link being clicked - logEvent
- Type: NLogLogEventInfo
Original log event that caused a line with the link
See Also