How to increase or decrease the tooltip delay time in WinForms GridGroupingControl?
Tooltip
In order to increase or decrease tooltip visible state time, CellToolTip.AutomaticDelay property can be used directly. The CellToolTip property can be accessed through TableControl.
C#
//Form() //Sets the automatic delay time period for tooltip. this.gridGroupingControl1.TableControl.CellToolTip.AutomaticDelay = 1000; this.gridGroupingControl1.QueryCellStyleInfo += gridGroupingControl1_QueryCellStyleInfo; void gridGroupingControl1_QueryCellStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableCellStyleInfoEventArgs e) { //Sets the ToolTip text. e.Style.CellTipText = "ToolTipText"; }
VB
'Form 'Sets the automatic delay time period for tooltip. Me.gridGroupingControl1.TableControl.CellToolTip.AutomaticDelay = 1000 AddHandler Me.gridGroupingControl1.QueryCellStyleInfo, AddressOf gridGroupingControl1_QueryCellStyleInfo Private Sub gridGroupingControl1_QueryCellStyleInfo(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.Grouping.GridTableCellStyleInfoEventArgs) 'Sets the ToolTip text. e.Style.CellTipText = "ToolTipText" End Sub
Samples:
C#: ToolTip Delay_CS
VB: ToolTip Delay_VB
Reference link:
Conclusion
I hope you enjoyed learning about how to increase or decrease the tooltip delay time in WinForms GridGroupingControl.
You can refer to our WinForms GridGroupingControl feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms GridGroupingControl example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!