Class DataMemberInfo
Represents meta data about a property.
Inheritance
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class DataMemberInfo : Object
Constructors
DataMemberInfo()
Initializes a new instance of the DataMemberInfo class.
Declaration
public DataMemberInfo()
DataMemberInfo(Int32, Type, String, Boolean, Boolean)
Initializes a new instance of the DataMemberInfo class.
Declaration
public DataMemberInfo(int columnIndex, Type dataType, string memberName, bool isSortable, bool isFilterable)
Parameters
System.
|
System.
|
System.
|
System.
|
System.
|
DataMemberInfo(DataMemberEventArgs)
Initializes a new instance of the DataMemberInfo class.
Declaration
public DataMemberInfo(DataMemberEventArgs args)
Parameters
Data
|
Properties
ColumnIndex
Gets the column's index.
Declaration
public int ColumnIndex { get; }
Property Value
System.
|
DataType
Gets or sets the data member type.
Declaration
public Type DataType { get; set; }
Property Value
System.
|
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.
|
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.
|
MemberName
Gets or sets the data member name.
Declaration
public string MemberName { get; set; }
Property Value
System.
|