Click or drag to resize
GridFeaturesEnableToolTips Property
Gets or sets a value indicating if Tool Tips are enabled.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
[DefaultValueAttribute(false)]
public bool EnableToolTips { get; set; }

Property Value

Type: Boolean
Whether or not Tool Tips are enabled.
Remarks
Set this property to true to enable tool tips in the grid. The tool tips must then be associated with the cell or cells that you want to see tool tips for.

Tool tips for individual cells can be set in the designer using the Style|ToolTip setting in the CurrentCell properties group. Tool tips for ranges of cells can be set in source code. The following C# source code sets the Tool Tip for column 1 to "Column 1".

Style s = new Style();
s.ToolTip = "Column 1";
myGridControl.SetStyleRange(Range.Col(1), s);

This property must be set in the designer.

See Also