AnnotatedScrollBar.DetailLabelRequested Event

Definition

Raised upon user interaction with the AnnotatedScrollBar track when content for a tooltip is required.

// Register
event_token DetailLabelRequested(TypedEventHandler<AnnotatedScrollBar, AnnotatedScrollBarDetailLabelRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void DetailLabelRequested(event_token const* cookie) const;

// Revoke with event_revoker
AnnotatedScrollBar::DetailLabelRequested_revoker DetailLabelRequested(auto_revoke_t, TypedEventHandler<AnnotatedScrollBar, AnnotatedScrollBarDetailLabelRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<AnnotatedScrollBar,AnnotatedScrollBarDetailLabelRequestedEventArgs> DetailLabelRequested;
function onDetailLabelRequested(eventArgs) { /* Your code */ }
annotatedScrollBar.addEventListener("detaillabelrequested", onDetailLabelRequested);
annotatedScrollBar.removeEventListener("detaillabelrequested", onDetailLabelRequested);
- or -
annotatedScrollBar.ondetaillabelrequested = onDetailLabelRequested;
Public Custom Event DetailLabelRequested As TypedEventHandler(Of AnnotatedScrollBar, AnnotatedScrollBarDetailLabelRequestedEventArgs) 

Event Type

Remarks

The user interactions that raise this event include mouse hover, mouse click, tap, and scroll (via scrollable container or the AnnotatedScrollBar arrow buttons).

Applies to