Class ObjectSortEventArgs<TObject>
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Object event arguments
public class ObjectSortEventArgs<TObject> : ObjectEventArgs<TObject>
Type Parameters
TObject
- Inheritance
-
objectEventArgsObjectEventArgs<TObject>ObjectSortEventArgs<TObject>
- Derived
- Inherited Members
- Extension Methods
Constructors
ObjectSortEventArgs()
Constructor.
public ObjectSortEventArgs()
ObjectSortEventArgs(TObject, bool, string, string)
Constructor.
public ObjectSortEventArgs(TObject infoObject, bool ascending, string orderColumn, string nameColumn)
Parameters
infoObjectTObjectObject instance
ascendingboolIndicates if the sort should be ascending
orderColumnstringName of the order column. If null, OrderColumn from TypeInfo is taken
nameColumnstringColumn by the content of which the alphabetical order will be set
Properties
Ascending
Indicates if the sort should be ascending.
public bool Ascending { get; protected set; }
Property Value
- bool
NameColumn
Column by the content of which the alphabetical order will be set.
public string NameColumn { get; protected set; }
Property Value
- string
OrderColumn
Name of the order column. If null, OrderColumn from TypeInfo is taken.
public string OrderColumn { get; protected set; }
Property Value
- string