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