Class NSLocalizedText

Constructors

NSLocalizedText()

Initializes a new instance of the NSLocalizedText class.

Declaration

NSLocalizedText

Methods

GetIsBuiltIn()

Declaration

Bool GetIsBuiltIn()

Examples

NSLocalizedText thing;
Bool isBuiltIn = thing.GetIsBuiltIn();

Returns

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

GetLanguageId()

Declaration

Integer GetLanguageId()

Examples

NSLocalizedText thing;
Integer languageId = thing.GetLanguageId();

Returns

Type Description
Integer Language ID as LCID value.

GetLocalizedTextId()

Declaration

Integer GetLocalizedTextId()

Examples

NSLocalizedText thing;
Integer localizedTextId = thing.GetLocalizedTextId();

Returns

Type Description
Integer Primary key.

GetResourceId()

Declaration

Integer GetResourceId()

Examples

NSLocalizedText thing;
Integer resourceId = thing.GetResourceId();

Returns

Type Description
Integer Resource Id.

GetText()

Declaration

String GetText()

Examples

NSLocalizedText thing;
String text = thing.GetText();

Returns

Type Description
String The text string itself.

GetType()

Declaration

Integer GetType()

Examples

NSLocalizedText thing;
Integer type = thing.GetType();

Returns

Type Description
Integer The type of the text string, such as Field label, Udef label. See <xref href="CRMScript.NetServer.LocalizedTextType" data-throw-if-not-resolved="false"></xref>

SetIsBuiltIn(Bool)

Declaration

Void SetIsBuiltIn(Bool isBuiltIn)

Examples

NSLocalizedText thing;
Bool isBuiltIn;
thing.SetIsBuiltIn(isBuiltIn);

Parameters

Type Name Description
Bool isBuiltIn 1 = this row is populated and maintained by SuperOffice.

Returns

Type Description
Void

SetLanguageId(Integer)

Declaration

Void SetLanguageId(Integer languageId)

Examples

NSLocalizedText thing;
Integer languageId;
thing.SetLanguageId(languageId);

Parameters

Type Name Description
Integer languageId Language ID as LCID value.

Returns

Type Description
Void

SetLocalizedTextId(Integer)

Declaration

Void SetLocalizedTextId(Integer localizedTextId)

Examples

NSLocalizedText thing;
Integer localizedTextId;
thing.SetLocalizedTextId(localizedTextId);

Parameters

Type Name Description
Integer localizedTextId Primary key.

Returns

Type Description
Void

SetResourceId(Integer)

Declaration

Void SetResourceId(Integer resourceId)

Examples

NSLocalizedText thing;
Integer resourceId;
thing.SetResourceId(resourceId);

Parameters

Type Name Description
Integer resourceId Resource Id.

Returns

Type Description
Void

SetText(String)

Declaration

Void SetText(String text)

Examples

NSLocalizedText thing;
String text;
thing.SetText(text);

Parameters

Type Name Description
String text The text string itself.

Returns

Type Description
Void

SetType(Integer)

Declaration

Void SetType(Integer type)

Examples

NSLocalizedText thing;
Integer type;
thing.SetType(type);

Parameters

Type Name Description
Integer type The type of the text string, such as Field label, Udef label. See <xref href="CRMScript.NetServer.LocalizedTextType" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void