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 Quote Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public class QuoteLineConfiguration : Carrier
Constructors
QuoteLineConfiguration()
Default constructor
Declaration
public QuoteLineConfiguration()
See Also
Properties
Editable
Is this a read only field?
Declaration
[DataMember]
public virtual bool Editable { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
FieldName
The name of the field being configured, from data dictionary
Declaration
[DataMember]
public virtual string FieldName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
InUse
Should this field be displayed in the GUI?
Declaration
[DataMember]
public virtual bool InUse { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
Label
Label resource string.
Declaration
[DataMember]
public virtual string Label { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
Mandatory
Is this a mandatory field?
Declaration
[DataMember]
public virtual bool Mandatory { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
QuoteLineConfigurationId
Primary key
Declaration
[DataMember]
public virtual int QuoteLineConfigurationId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Rank
Rank of the field
Declaration
[DataMember]
public virtual int Rank { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
RestrictEdit
If true, then this field cannot be set readwrite or mandatory: It's bound to be readonly
Declaration
[DataMember]
public virtual bool RestrictEdit { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
Tooltip
Tooltip resource string.
Declaration
[DataMember]
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. |