Class DataMemberInfo
Represents meta data about a property.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class DataMemberInfo
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.Int32
columnIndex
|
System.Type
dataType
|
System.String
memberName
|
System.Boolean
isSortable
|
System.Boolean
isFilterable
|
DataMemberInfo(DataMemberEventArgs)
Initializes a new instance of the DataMemberInfo class.
Declaration
public DataMemberInfo(DataMemberEventArgs args)
Parameters
DataMemberEventArgs
args
|
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
|