Back to Devexpress

HighlightedLinkChangedEventHandler Delegate

windowsforms-devexpress-dot-xtrabars-a7fb27df.md

latest2.0 KB
Original Source

HighlightedLinkChangedEventHandler Delegate

Represents a method that will handle the BarManager.HighlightedLinkChanged event.

Namespace : DevExpress.XtraBars

Assembly : DevExpress.XtraBars.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
public delegate void HighlightedLinkChangedEventHandler(
    object sender,
    HighlightedLinkChangedEventArgs e
);
vb
Public Delegate Sub HighlightedLinkChangedEventHandler(
    sender As Object,
    e As HighlightedLinkChangedEventArgs
)

Parameters

NameTypeDescription
senderObject

The event source (typically the BarManager object).

| | e | HighlightedLinkChangedEventArgs |

A HighlightedLinkChangedEventArgs object that contains data related to the event.

|

Remarks

When you create a HighlightedLinkChangedEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

See Also

HighlightedLinkChanged

HighlightedLinkChangedEventArgs

DevExpress.XtraBars Namespace