Table of Contents

Class OrderLineField

Namespace
Dynamicweb.Ecommerce.Orders
Assembly
Dynamicweb.Ecommerce.dll

Represents information about an order line field

[Serializable]
public class OrderLineField
Inheritance
OrderLineField
Inherited Members

Constructors

OrderLineField(string, string, int)

Initializes a new instance of the OrderLineField class.

public OrderLineField(string systemName, string name, int length)

Parameters

systemName string

System name of the field.

name string

Name of the field.

length int

Length of the field (number of characters).

Properties

Length

Gets or sets the length.

public int Length { get; set; }

Property Value

int

The length.

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

SystemName

Gets the system name.

public string SystemName { get; }

Property Value

string

The system name.

To top