Class NSFieldInfoListText
Constructors
NSFieldInfoListText()
Initializes a new instance of the NSFieldInfoListText class.
Declaration
NSFieldInfoListText Methods
GetChoices()
Declaration
String[] GetChoices() Examples
NSFieldInfoListText thing;
String[] choices = thing.GetChoices();
Returns
| Type | Description |
| String[] | List of items to choose from. |
GetDefaultValue()
Declaration
String GetDefaultValue() Examples
NSFieldInfoListText thing;
String defaultValue = thing.GetDefaultValue();
Returns
| Type | Description |
| String | Default string value. |
GetTextLength()
Declaration
Integer GetTextLength() Examples
NSFieldInfoListText thing;
Integer textLength = thing.GetTextLength();
Returns
| Type | Description |
| Integer | Length (in characters) of a text field, 0 for other types. |
SetChoices(String[])
Declaration
Void SetChoices(String[] choices) Examples
NSFieldInfoListText thing;
String[] choices;
thing.SetChoices(choices);
Parameters
| Type | Name | Description |
| String[] | choices | List of items to choose from. |
Returns
| Type | Description |
| Void |
SetDefaultValue(String)
Declaration
Void SetDefaultValue(String defaultValue) Examples
NSFieldInfoListText thing;
String defaultValue;
thing.SetDefaultValue(defaultValue);
Parameters
| Type | Name | Description |
| String | defaultValue | Default string value. |
Returns
| Type | Description |
| Void |
SetTextLength(Integer)
Declaration
Void SetTextLength(Integer textLength) Examples
NSFieldInfoListText thing;
Integer textLength;
thing.SetTextLength(textLength);
Parameters
| Type | Name | Description |
| Integer | textLength | Length (in characters) of a text field, 0 for other types. |
Returns
| Type | Description |
| Void |