Interface IStringItem
A textual item to be shown on GUI controls (like combobox, listbox or tree).
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface IStringItem
Properties
| Improve this Doc View SourceHoverTextConfig
Gets or sets the text rendering configuration for the item when the mouse is hovered over it.
Declaration
ITextConfig HoverTextConfig { get; set; }
Property Value
Type | Description |
---|---|
ITextConfig | The hover text config. |
IdleTextConfig
Gets or sets the text rendering configuration for the item.
Declaration
ITextConfig IdleTextConfig { get; set; }
Property Value
Type | Description |
---|---|
ITextConfig | The idle text config. |
Properties
Custom properties which can be assigned to the item and give more context.
Declaration
ICustomProperties Properties { get; }
Property Value
Type | Description |
---|---|
ICustomProperties | The custom properties. |
Text
Gets or sets the text of the item.
Declaration
string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text. |