string ToolTip { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The ToolTip property of the GraphicsItem class in the Editor namespace is used to get or set a string that represents the tooltip text associated with a graphics item. This tooltip is typically displayed when the user hovers over the item, providing additional information or context about the item.

Usage

To use the ToolTip property, simply assign a string value to it. This string will be displayed as a tooltip when the user hovers over the graphics item in the editor.

Example usage:

GraphicsItem item = new GraphicsItem();
item.ToolTip = "This is a tooltip for the graphics item.";

Example

GraphicsItem item = new GraphicsItem();
item.ToolTip = "This is a tooltip for the graphics item.";