Table of Contents

Class ObjectSortEventArgs<TObject>

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Object event arguments

public class ObjectSortEventArgs<TObject> : ObjectEventArgs<TObject>

Type Parameters

TObject
Inheritance
object
EventArgs
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

infoObject TObject

Object instance

ascending bool

Indicates if the sort should be ascending

orderColumn string

Name of the order column. If null, OrderColumn from TypeInfo is taken

nameColumn string

Column 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