Class NSQuoteLineConfiguration
Contains information about which configuration fields that is visible in the GUI. Read only and mandatory fields are also specified.
Constructors
NSQuoteLineConfiguration()
Initializes a new instance of the NSQuoteLineConfiguration class.
Declaration
NSQuoteLineConfiguration Methods
GetEditable()
Declaration
Bool GetEditable() Examples
NSQuoteLineConfiguration thing;
Bool editable = thing.GetEditable();
Returns
| Type | Description |
| Bool | Is this a read only field? |
GetFieldName()
Declaration
String GetFieldName() Examples
NSQuoteLineConfiguration thing;
String fieldName = thing.GetFieldName();
Returns
| Type | Description |
| String | The name of the field being configured, from data dictionary. |
GetInUse()
Declaration
Bool GetInUse() Examples
NSQuoteLineConfiguration thing;
Bool inUse = thing.GetInUse();
Returns
| Type | Description |
| Bool | Should this field be displayed in the GUI? |
GetLabel()
Declaration
String GetLabel() Examples
NSQuoteLineConfiguration thing;
String label = thing.GetLabel();
Returns
| Type | Description |
| String | Label resource string. |
GetMandatory()
Declaration
Bool GetMandatory() Examples
NSQuoteLineConfiguration thing;
Bool mandatory = thing.GetMandatory();
Returns
| Type | Description |
| Bool | Is this a mandatory field? |
GetQuoteLineConfigurationId()
Declaration
Integer GetQuoteLineConfigurationId() Examples
NSQuoteLineConfiguration thing;
Integer quoteLineConfigurationId = thing.GetQuoteLineConfigurationId();
Returns
| Type | Description |
| Integer | Primary key. |
GetRank()
Declaration
Integer GetRank() Examples
NSQuoteLineConfiguration thing;
Integer rank = thing.GetRank();
Returns
| Type | Description |
| Integer | Rank of the field. |
GetRestrictEdit()
Declaration
Bool GetRestrictEdit() Examples
NSQuoteLineConfiguration thing;
Bool restrictEdit = thing.GetRestrictEdit();
Returns
| Type | Description |
| Bool | If true, then this field cannot be set readwrite or mandatory It's bound to be readonly. |
GetTooltip()
Declaration
String GetTooltip() Examples
NSQuoteLineConfiguration thing;
String tooltip = thing.GetTooltip();
Returns
| Type | Description |
| String | Tooltip resource string. |
SetEditable(Bool)
Declaration
Void SetEditable(Bool editable) Examples
NSQuoteLineConfiguration thing;
Bool editable;
thing.SetEditable(editable);
Parameters
| Type | Name | Description |
| Bool | editable | Is this a read only field? |
Returns
| Type | Description |
| Void |
SetFieldName(String)
Declaration
Void SetFieldName(String fieldName) Examples
NSQuoteLineConfiguration thing;
String fieldName;
thing.SetFieldName(fieldName);
Parameters
| Type | Name | Description |
| String | fieldName | The name of the field being configured, from data dictionary. |
Returns
| Type | Description |
| Void |
SetInUse(Bool)
Declaration
Void SetInUse(Bool inUse) Examples
NSQuoteLineConfiguration thing;
Bool inUse;
thing.SetInUse(inUse);
Parameters
| Type | Name | Description |
| Bool | inUse | Should this field be displayed in the GUI? |
Returns
| Type | Description |
| Void |
SetLabel(String)
Declaration
Void SetLabel(String label) Examples
NSQuoteLineConfiguration thing;
String label;
thing.SetLabel(label);
Parameters
| Type | Name | Description |
| String | label | Label resource string. |
Returns
| Type | Description |
| Void |
SetMandatory(Bool)
Declaration
Void SetMandatory(Bool mandatory) Examples
NSQuoteLineConfiguration thing;
Bool mandatory;
thing.SetMandatory(mandatory);
Parameters
| Type | Name | Description |
| Bool | mandatory | Is this a mandatory field? |
Returns
| Type | Description |
| Void |
SetQuoteLineConfigurationId(Integer)
Declaration
Void SetQuoteLineConfigurationId(Integer quoteLineConfigurationId) Examples
NSQuoteLineConfiguration thing;
Integer quoteLineConfigurationId;
thing.SetQuoteLineConfigurationId(quoteLineConfigurationId);
Parameters
| Type | Name | Description |
| Integer | quoteLineConfigurationId | Primary key. |
Returns
| Type | Description |
| Void |
SetRank(Integer)
Declaration
Void SetRank(Integer rank) Examples
NSQuoteLineConfiguration thing;
Integer rank;
thing.SetRank(rank);
Parameters
| Type | Name | Description |
| Integer | rank | Rank of the field. |
Returns
| Type | Description |
| Void |
SetRestrictEdit(Bool)
Declaration
Void SetRestrictEdit(Bool restrictEdit) Examples
NSQuoteLineConfiguration thing;
Bool restrictEdit;
thing.SetRestrictEdit(restrictEdit);
Parameters
| Type | Name | Description |
| Bool | restrictEdit | If true, then this field cannot be set readwrite or mandatory. It's bound to be readonly. |
Returns
| Type | Description |
| Void |