Class DataMemberEventArgs
Represents event arguments for the DataMemberNeeded event args.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class DataMemberEventArgs : EventArgs
Constructors
DataMemberEventArgs(Int32)
Initializes a new instance of the DataMemberEventArgs class.
Declaration
public DataMemberEventArgs(int columnIndex)
Parameters
System.Int32
columnIndex
|
Properties
ColumnIndex
Gets the column's index.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
DataType
Gets or sets the data member type.
Declaration
public Type DataType { get; set; }
Property Value
System.Type
|
IsFilterable
Gets or sets a value that indicates whether the column generated for this data member is filterable.
Declaration
public bool IsFilterable { get; set; }
Property Value
System.Boolean
|
IsSortable
Gets or sets a value that indicates whether the column generated for this data member is sortable.
Declaration
public bool IsSortable { get; set; }
Property Value
System.Boolean
|
MemberName
Gets or sets the data member name.
Declaration
public string MemberName { get; set; }
Property Value
System.String
|