Class OrderField
- Namespace
- Dynamicweb.Ecommerce.Orders
- Assembly
- Dynamicweb.Ecommerce.dll
Represents information about a custom field in order.
[Serializable]
public class OrderField
- Inheritance
-
OrderField
- Inherited Members
Constructors
OrderField()
Initializes a new instance of OrderField.
public OrderField()
Properties
ID
Gets or sets the ID.
public string ID { get; set; }
Property Value
- string
The ID.
Locked
Gets or sets a value indicating whether this OrderField is locked.
public bool Locked { get; set; }
Property Value
- bool
true
if locked; otherwise,false
.
Name
Gets or sets the name.
public string Name { get; set; }
Property Value
- string
The name.
Sort
Gets or sets the sort.
public int Sort { get; set; }
Property Value
- int
The sort.
SystemName
Gets or sets the system name.
public string SystemName { get; set; }
Property Value
- string
The system name.
TemplateName
Gets or sets the name of the template.
public string TemplateName { get; set; }
Property Value
- string
The template name.
TypeId
Gets or sets the type ID.
public int TypeId { get; set; }
Property Value
- int
The type ID.
TypeName
Gets or sets the type name.
public string TypeName { get; set; }
Property Value
- string
The type name.
Methods
GetFieldType()
Gets the associated field type.
public FieldType GetFieldType()