Gets or sets the amount of time in milliseconds before the cell tip window is displayed.
[Visual Basic]
Public Property CellTipsDelay As Integer
[C#]
public int CellTipsDelay {get;set;}
[Delphi]
public property CellTipsDelay: Int32 read get_CellTipsDelay write set_CellTipsDelay;
Remarks
By default, this property is set to 500.
Setting this property to zero does not disable cell tips, but restores the default value of 500. To disable cell tips, set the CellTips property to CellTipEnum.NoCellTips.
Example
The following code uses the CellTipsDelay property to change the amount of time before the cell tip window is displayed to a .25 second delay:
Me.C1TrueDBGrid1.CellTipsDelay = 250
· C#
this.c1TrueDBGrid1.CellTipsDelay = 250;
· Delphi
Self.C1TrueDBGrid1.CellTipsDelay := 250;
See Also
C1TrueDBGrid Class | C1TrueDBGrid Members | C1.Win.C1TrueDBGrid Namespace
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |