Class NSLocalizedText
Syntax
Constructors
NSLocalizedText()
Initializes a new instance of the NSLocalizedText class.
Declaration
Methods
GetIsBuiltIn()
Declaration
Returns
Type |
Description |
Bool |
1 = this row is populated and maintained by SuperOffice.
|
Examples
NSLocalizedText thing;
Bool isBuiltIn = thing.GetIsBuiltIn();
GetLanguageId()
Declaration
Returns
Type |
Description |
Integer |
Language ID as LCID value.
|
Examples
NSLocalizedText thing;
Integer languageId = thing.GetLanguageId();
GetLocalizedTextId()
Declaration
Integer GetLocalizedTextId()
Returns
Type |
Description |
Integer |
Primary key.
|
Examples
NSLocalizedText thing;
Integer localizedTextId = thing.GetLocalizedTextId();
GetResourceId()
Declaration
Returns
Type |
Description |
|
Resource Id.
|
Examples
NSLocalizedText thing;
Integer resourceId = thing.GetResourceId();
GetText()
Declaration
Returns
Type |
Description |
String |
The text string itself.
|
Examples
NSLocalizedText thing;
String text = thing.GetText();
GetType()
Declaration
Returns
Examples
NSLocalizedText thing;
Integer type = thing.GetType();
SetIsBuiltIn(Bool)
Declaration
Void SetIsBuiltIn(Bool isBuiltIn)
Parameters
Type |
Name |
Description |
Bool |
isBuiltIn |
1 = this row is populated and maintained by SuperOffice.
|
Returns
Examples
NSLocalizedText thing;
Bool isBuiltIn;
thing.SetIsBuiltIn(isBuiltIn);
SetLanguageId(Integer)
Declaration
Void SetLanguageId(Integer languageId)
Parameters
Type |
Name |
Description |
Integer |
languageId |
Language ID as LCID value.
|
Returns
Examples
NSLocalizedText thing;
Integer languageId;
thing.SetLanguageId(languageId);
SetLocalizedTextId(Integer)
Declaration
Void SetLocalizedTextId(Integer localizedTextId)
Parameters
Type |
Name |
Description |
Integer |
localizedTextId |
Primary key.
|
Returns
Examples
NSLocalizedText thing;
Integer localizedTextId;
thing.SetLocalizedTextId(localizedTextId);
SetResourceId(Integer)
Declaration
Void SetResourceId(Integer resourceId)
Parameters
Type |
Name |
Description |
Integer |
resourceId |
Resource Id.
|
Returns
Examples
NSLocalizedText thing;
Integer resourceId;
thing.SetResourceId(resourceId);
SetText(String)
Declaration
Void SetText(String text)
Parameters
Type |
Name |
Description |
String |
text |
The text string itself.
|
Returns
Examples
NSLocalizedText thing;
String text;
thing.SetText(text);
SetType(Integer)
Declaration
Void SetType(Integer type)
Parameters
Returns
Examples
NSLocalizedText thing;
Integer type;
thing.SetType(type);