Ordering Class
Provides data used to order one object relative to another.
public class Ordering
- Inheritance:
- Object Object
Constructors
Ordering(String, OrderPlacement)
Initializes a new instance of the Ordering
class.
public Ordering(string key, OrderPlacement placement)
Parameter | Type | Description |
---|---|---|
key | String | The string-based key of the object relative to which the ordering's owner should be positioned. |
placement | OrderPlacement | The OrderPlacement that indicates how to position the ordering's owner relative to the object specified by Key. |
Properties
Key
Gets the string-based key of the object relative to which the ordering's owner should be positioned.
public string Key { get; }
Property Value
- String:
The string-based key of the object relative to which the ordering's owner should be positioned.
Placement
Gets the OrderPlacement that indicates how to position the ordering's owner relative to the object specified by Key.
public OrderPlacement Placement { get; }
Property Value
- OrderPlacement:
The OrderPlacement that indicates how to position the ordering's owner relative to the object specified by Key.
Methods
ToString()
Converts the object to a String
.