Class QuoteLineConfiguration
QuoteLineConfiguration contains information about which configuration fields that is visible in the GUI. Read only and mandatory fields are also specified.
Carrier object for QuoteLineConfiguration. Services for the QuoteLineConfiguration Carrier is available from the IQuoteAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class QuoteLineConfiguration : Carrier
Constructors
QuoteLineConfiguration()
Default constructor
Declaration
public QuoteLineConfiguration()
See Also
Properties
Editable
Is this a read only field?
Declaration
public virtual bool Editable { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
FieldName
The name of the field being configured, from data dictionary
Declaration
public virtual string FieldName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
InUse
Should this field be displayed in the GUI?
Declaration
public virtual bool InUse { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
Label
Label resource string.
Declaration
public virtual string Label { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Mandatory
Is this a mandatory field?
Declaration
public virtual bool Mandatory { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
QuoteLineConfigurationId
Primary key
Declaration
public virtual int QuoteLineConfigurationId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
Rank
Rank of the field
Declaration
public virtual int Rank { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
RestrictEdit
If true, then this field cannot be set readwrite or mandatory: It's bound to be readonly
Declaration
public virtual bool RestrictEdit { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
Tooltip
Tooltip resource string.
Declaration
public virtual string Tooltip { 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. |