CommentTipShowing Event
Occurs when the comment tip window is going to show.
Syntax
'Declaration Public Event CommentTipShowing As CommentTipShowingEventHandler
'Usage Dim instance As GridControlBase Dim handler As CommentTipShowingEventHandler AddHandler instance.CommentTipShowing, handler
public event CommentTipShowingEventHandler CommentTipShowing
Event Data
The event handler receives an argument of type CommentTipShowingEventArgs containing data related to this event. The following CommentTipShowingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
ColIndex | Gets the column index. (Inherited from Syncfusion.Windows.Forms.Grid.GridCellCancelEventArgs) |
CommentTipWindow | Gets or sets the comment tip window. |
RowIndex | Gets the row index. (Inherited from Syncfusion.Windows.Forms.Grid.GridCellCancelEventArgs) |
Style | Gets the GridStyleInfo of the comment tip cell. |
AssemblyVersion
Syncfusion.Grid.Windows: 17.3460.0.26
See Also