FieldOrderCollection constructor
Creates and initializes a FieldOrderCollection object according to the specified parameters.
Overload list
Name | Description | |
---|---|---|
FieldOrderCollection() | Default constructor for creating a FieldOrderCollection object. | |
FieldOrderCollection(IEnumerable<String>) | Creates a collection of FieldOrder objects, with column names that are initialized from a collection of strings. | |
FieldOrderCollection(IEnumerable<FieldOrder>) | Creates a collection of FieldOrder objects, with column names initialized from a collection of field order objects. | |
FieldOrderCollection(IEnumerable<String>, IEnumerable<Boolean>) | Creates and initializes a collection of FieldOrder objects. This constructor initializes the collection with column names from the specified array and with information about the ordering of the fields in each column. |
Top