Skip to main content
A newer version of this page is available. .

SpreadsheetControl.ToolTipController Property

Gets or sets the tooltip controller component that controls the appearance, position and the content of the hints displayed by the SpreadsheetControl.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v19.1.dll

Declaration

[DefaultValue(null)]
public ToolTipController ToolTipController { get; set; }

Property Value

Type Default Description
ToolTipController *null*

A ToolTipController component which controls the appearance and behavior of the hints displayed by the SpreadsheetControl.

Remarks

To provide centralized management over the appearance and behavior of the hints displayed by DevExpress controls or their elements, use the ToolTipController component. Use the ToolTipController property to assign it to the SpreadsheetControl.

For example, the Custom Tooltip demo module provided for the SpreadsheetControl demonstrates how to display custom tooltips for worksheet cells. The SpreadsheetControl.GetCellFromPoint method is used to obtain a cell over which the mouse hovers.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ToolTipController property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also