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