Class NSFieldInfoBool

Boolean custom database field. Typically rendered as a checkbox.

Constructors

NSFieldInfoBool()

Initializes a new instance of the NSFieldInfoBool class.

Declaration

NSFieldInfoBool

Methods

GetDefaultValue()

Declaration

Bool GetDefaultValue()

Examples

NSFieldInfoBool thing;
Bool defaultValue = thing.GetDefaultValue();

Returns

Type Description
Bool Default boolean value.

SetDefaultValue(Bool)

Declaration

Void SetDefaultValue(Bool defaultValue)

Examples

NSFieldInfoBool thing;
Bool defaultValue;
thing.SetDefaultValue(defaultValue);

Parameters

Type Name Description
Bool defaultValue Default boolean value.

Returns

Type Description
Void