Class LocalizedField
LocalizedField is used to store localized information such as formatted address data, a formatted phone number, etc.
Carrier object for LocalizedField.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class LocalizedField : Carrier
Constructors
LocalizedField()
Default constructor
Declaration
public LocalizedField()
Properties
AddressType
LocalizedField is used to store localized information such as formatted address data, a formatted phone number, etc.
Carrier object for LocalizedField.Declaration
[DataMember]
public virtual string AddressType { get; set; }
Property Value
Type | Description |
---|---|
string |
Label
The label of the field
Declaration
[DataMember]
public virtual string Label { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Name of the value field
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Tooltip
The tooltip
Declaration
[DataMember]
public virtual string Tooltip { get; set; }
Property Value
Type | Description |
---|---|
string |
Value
The field's value
Declaration
[DataMember]
public virtual string Value { get; set; }
Property Value
Type | Description |
---|---|
string |
ValueLength
Database length of the value
Declaration
[DataMember]
public virtual int ValueLength { get; set; }
Property Value
Type | Description |
---|---|
int |
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
string | The carrier contents. |