Class MyTerminalControlListBoxItem
This is a list box item in a list box terminal control
Inheritance
System.Object
MyTerminalControlListBoxItem
Namespace: VRage.ModAPI
Assembly: VRage.Game.dll
Syntax
public class MyTerminalControlListBoxItem : Object
Constructors
MyTerminalControlListBoxItem(MyStringId, MyStringId, Object)
Constructor
Declaration
public MyTerminalControlListBoxItem(MyStringId text, MyStringId tooltip, object userData)
Parameters
Type | Name | Description |
---|---|---|
MyStringId | text | string id of the text |
MyStringId | tooltip | string id of the tool tip |
System.Object | userData | user data |
Properties
Text
Gets or Sets the text that appears for the item
Declaration
public MyStringId Text { get; set; }
Property Value
Type | Description |
---|---|
MyStringId |
Tooltip
Gets or Sets t the tool tip that is displayed when the item is hovered over
Declaration
public MyStringId Tooltip { get; set; }
Property Value
Type | Description |
---|---|
MyStringId |
UserData
Gets or Sets the user supplied data for the item
Declaration
public object UserData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |