Skip to main content

Class LocalizedText

Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for LocalizedText.

Inheritance

objectCarrierLocalizedText

Inherited Members

Carrier.TableRight, Carrier.FieldProperties, object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()

Examples

Get LocalizedText 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new ListAgent(configuration);
var localizedText = agent.GetLocalizedText( 123 );

Constructors

LocalizedText()

Default constructor - defaults any enum props to 0.

Properties

IsBuiltIn

1 = this row is populated and maintained by SuperOffice

Property Value

bool

LanguageId

Language id as LCID value

Property Value

int

LocalizedTextId

Primary key

Property Value

int

ResourceId

Resource ID

Property Value

int

Text

The text string itself

Property Value

string

Type

The type of the text string, e.g. Field label, Udef label, etc. NULL if unknown enum value.

Property Value

LocalizedTextType?

See Also

LocalizedText.Type_String

Type_String

The type of the text string, e.g. Field label, Udef label, etc. Raw string enum value.

Property Value

string

See Also

LocalizedText.Type

See Also

ListAgent