Class FieldInfoShortText
Short text string custom database field.
Carrier object for FieldInfoShortText. Services for the FieldInfoShortText Carrier is available from the UserDefinedFieldInfo Agent.Inherited Members
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class FieldInfoShortText : FieldInfoBase
Constructors
FieldInfoShortText()
Default constructor
Declaration
public FieldInfoShortText()
See Also
Properties
DefaultValue
Default string value
Declaration
[DataMember]
public virtual string DefaultValue { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
FormatMask
Formatting mask, can be whatever the controls understand (currently nothing :-))
Declaration
[DataMember]
public virtual string FormatMask { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
IsHtml
Do not escape HTML in field when displaying contents.
Declaration
[DataMember]
public virtual bool IsHtml { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
TextLength
Length (in characters) of a text field, 0 for other types
Declaration
[DataMember]
public virtual short TextLength { get; set; }
Property Value
Type | Description |
---|---|
short |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
Overrides
See Also
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 override string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
string | The carrier contents. |