Class FieldValueInfo
This class carries information about the definition and properties of an field used in bulk update system. The class is serializable and used on both the application and Web server sides.
Carrier object for FieldValueInfo. Services for the FieldValueInfo Carrier is available from the IBulkUpdateAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class FieldValueInfo : Object
Constructors
FieldValueInfo()
Default constructor
Declaration
public FieldValueInfo()
See Also
Properties
CanSupportMultiUse
Can the field support multi use?
Declaration
public virtual bool CanSupportMultiUse { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
ControlInfos
Array of the controlinfos
Declaration
public virtual ControlInfo[] ControlInfos { get; set; }
Property Value
Type | Description |
---|---|
ControlInfo[] |
See Also
CurrentOperationType
The selected operation to execute on this field
Declaration
public virtual string CurrentOperationType { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
DefaultShowInGui
Default show in Gui?
Declaration
public virtual bool DefaultShowInGui { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
DefaultShowInSelector
Default show in selector?
Declaration
public virtual bool DefaultShowInSelector { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
DisplayValues
The displayvalues to be set on this field on this bulkupdate, used to resolve when values array contains ids
Declaration
public virtual string[] DisplayValues { get; set; }
Property Value
Type | Description |
---|---|
String[] |
See Also
EncodedDataCaption
This class carries information about the definition and properties of an field used in bulk update system. The class is serializable and used on both the application and Web server sides.
Carrier object for FieldValueInfo. Services for the FieldValueInfo Carrier is available from the IBulkUpdateAgent.Declaration
public virtual string EncodedDataCaption { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
EncodedDataCaptionDescription
This class carries information about the definition and properties of an field used in bulk update system. The class is serializable and used on both the application and Web server sides.
Carrier object for FieldValueInfo. Services for the FieldValueInfo Carrier is available from the IBulkUpdateAgent.Declaration
public virtual string EncodedDataCaptionDescription { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
EncodedDisplayDescription
The description of the field
Declaration
public virtual string EncodedDisplayDescription { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
EncodedDisplayName
The displayname of the field
Declaration
public virtual string EncodedDisplayName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
IconHint
The iconhint of the field
Declaration
public virtual string IconHint { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
IsActive
True if the field and operations will be used in the bulk update
Declaration
public virtual bool IsActive { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
Key
The unique key on the field
Declaration
public virtual string Key { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Mandatory
True if this is a mandatory field
Declaration
public virtual bool Mandatory { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
OperationInfos
Array of the available operations for this field
Declaration
public virtual OperationInfo[] OperationInfos { get; set; }
Property Value
Type | Description |
---|---|
OperationInfo[] |
See Also
Values
The values to be set on this field on this bulkupdate
Declaration
public virtual string[] Values { get; set; }
Property Value
Type | Description |
---|---|
String[] |
See Also
ValueType
Describes the expected value array
Declaration
public virtual string ValueType { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
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 string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |