Class NSFieldInfoMdoList
MDO List custom database field.
Constructors
NSFieldInfoMdoList()
Initializes a new instance of the NSFieldInfoMdoList class.
Declaration
NSFieldInfoMdoList Methods
GetDefaultValue()
Declaration
Integer GetDefaultValue() Examples
NSFieldInfoMdoList thing;
Integer defaultValue = thing.GetDefaultValue();
Returns
| Type | Description |
| Integer | Default list item Id. |
GetMdoListName()
Declaration
String GetMdoListName() Examples
NSFieldInfoMdoList thing;
String mdoListName = thing.GetMdoListName();
Returns
| Type | Description |
| String | MDO list name used to populate this list. (Read-only). |
SetDefaultValue(Integer)
Declaration
Void SetDefaultValue(Integer defaultValue) Examples
NSFieldInfoMdoList thing;
Integer defaultValue;
thing.SetDefaultValue(defaultValue);
Parameters
| Type | Name | Description |
| Integer | defaultValue | Default list item Id. |
Returns
| Type | Description |
| Void |
SetMdoListName(String)
Declaration
Void SetMdoListName(String mdoListName) Examples
NSFieldInfoMdoList thing;
String mdoListName;
thing.SetMdoListName(mdoListName);
Parameters
| Type | Name | Description |
| String | mdoListName | MDO list name used to populate this list. (Read-only). |
Returns
| Type | Description |
| Void |