'Declaration
Public Event OutlineTapped As EventHandler(Of GridOutlineEventArgs)
'Usage
Dim instance As GridColumnHeaderCell Dim handler As EventHandler(Of GridOutlineEventArgs) AddHandler instance.OutlineTapped, handler
public event EventHandler<GridOutlineEventArgs> OutlineTapped
Event Data
The event handler receives an argument of type GridOutlineEventArgs containing data related to this event. The following GridOutlineEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Level | Gets the level of the tapped outline. |
See Also