Class NSFieldInfoBool
Boolean custom database field. Typically rendered as a checkbox.
Syntax
Constructors
NSFieldInfoBool()
Initializes a new instance of the NSFieldInfoBool class.
Declaration
NSFieldInfoBool
Methods
GetDefaultValue()
Boolean custom database field. Typically rendered as a checkbox.
Declaration
Bool GetDefaultValue()
Returns
| Type | Description |
|---|---|
| Bool | Default boolean value. |
Examples
NSFieldInfoBool thing;
Bool defaultValue = thing.GetDefaultValue();
SetDefaultValue(Bool)
Boolean custom database field. Typically rendered as a checkbox.
Declaration
Void SetDefaultValue(Bool defaultValue)
Parameters
| Type | Name | Description |
|---|---|---|
| Bool | defaultValue | Default boolean value. |
Returns
| Type | Description |
|---|---|
| Void |
Examples
NSFieldInfoBool thing;
Bool defaultValue;
thing.SetDefaultValue(defaultValue);