Class NSPreferenceDescriptionLine

Preference description line, contains information about a single item in a preference description list.

Constructors

NSPreferenceDescriptionLine()

Initializes a new instance of the NSPreferenceDescriptionLine class.

Declaration

NSPreferenceDescriptionLine

Methods

GetDescription()

Declaration

String GetDescription()

Examples

NSPreferenceDescriptionLine thing;
String description = thing.GetDescription();

Returns

Type Description
String Description of preference value, multi-language parsed.

GetIsBuiltin()

Declaration

Bool GetIsBuiltin()

Examples

NSPreferenceDescriptionLine thing;
Bool isBuiltin = thing.GetIsBuiltin();

Returns

Type Description
Bool 1 = This row populated and maintained by SuperOffice.

GetPrefDescId()

Declaration

Integer GetPrefDescId()

Examples

NSPreferenceDescriptionLine thing;
Integer prefDescId = thing.GetPrefDescId();

Returns

Type Description
Integer Preference description (parent).

GetPrefDescLineId()

Declaration

Integer GetPrefDescLineId()

Examples

NSPreferenceDescriptionLine thing;
Integer prefDescLineId = thing.GetPrefDescLineId();

Returns

Type Description
Integer Primary key.

GetPrefShowValue()

Declaration

String GetPrefShowValue()

Examples

NSPreferenceDescriptionLine thing;
String prefShowValue = thing.GetPrefShowValue();

Returns

Type Description
String Descriptive value, multilang-parsed, to put in list.

GetPrefValue()

Declaration

String GetPrefValue()

Examples

NSPreferenceDescriptionLine thing;
String prefValue = thing.GetPrefValue();

Returns

Type Description
String Possible value.

SetDescription(String)

Declaration

Void SetDescription(String description)

Examples

NSPreferenceDescriptionLine thing;
String description;
thing.SetDescription(description);

Parameters

Type Name Description
String description Description of preference value, multi-language parsed.

Returns

Type Description
Void

SetIsBuiltin(Bool)

Declaration

Void SetIsBuiltin(Bool isBuiltin)

Examples

NSPreferenceDescriptionLine thing;
Bool isBuiltin;
thing.SetIsBuiltin(isBuiltin);

Parameters

Type Name Description
Bool isBuiltin 1 = This row populated and maintained by SuperOffice.

Returns

Type Description
Void

SetPrefDescId(Integer)

Declaration

Void SetPrefDescId(Integer prefDescId)

Examples

NSPreferenceDescriptionLine thing;
Integer prefDescId;
thing.SetPrefDescId(prefDescId);

Parameters

Type Name Description
Integer prefDescId Preference description (parent).

Returns

Type Description
Void

SetPrefDescLineId(Integer)

Declaration

Void SetPrefDescLineId(Integer prefDescLineId)

Examples

NSPreferenceDescriptionLine thing;
Integer prefDescLineId;
thing.SetPrefDescLineId(prefDescLineId);

Parameters

Type Name Description
Integer prefDescLineId Primary key.

Returns

Type Description
Void

SetPrefShowValue(String)

Declaration

Void SetPrefShowValue(String prefShowValue)

Examples

NSPreferenceDescriptionLine thing;
String prefShowValue;
thing.SetPrefShowValue(prefShowValue);

Parameters

Type Name Description
String prefShowValue Descriptive value, multilang-parsed, to put in list.

Returns

Type Description
Void

SetPrefValue(String)

Declaration

Void SetPrefValue(String prefValue)

Examples

NSPreferenceDescriptionLine thing;
String prefValue;
thing.SetPrefValue(prefValue);

Parameters

Type Name Description
String prefValue Possible value.

Returns

Type Description
Void