Class
DataMemberInfo

Represents meta data about a property.

Definition

Namespace:Telerik.Windows.Controls.VirtualGrid

Assembly:Telerik.Windows.Controls.VirtualGrid.dll

Syntax:

cs-api-definition
public class DataMemberInfo

Inheritance: objectDataMemberInfo

Constructors

DataMemberInfo()

Initializes a new instance of the DataMemberInfo class.

Declaration

cs-api-definition
public DataMemberInfo()

DataMemberInfo(DataMemberEventArgs)

Initializes a new instance of the DataMemberInfo class.

Declaration

cs-api-definition
public DataMemberInfo(DataMemberEventArgs args)

Parameters

args

DataMemberEventArgs

DataMemberInfo(int, Type, string, bool, bool)

Initializes a new instance of the DataMemberInfo class.

Declaration

cs-api-definition
public DataMemberInfo(int columnIndex, Type dataType, string memberName, bool isSortable, bool isFilterable)

Parameters

columnIndex

int

dataType

Type

memberName

string

isSortable

bool

isFilterable

bool

Properties

ColumnIndex

Gets the column's index.

Declaration

cs-api-definition
public int ColumnIndex { get; }

Property Value

int

DataType

Gets or sets the data member type.

Declaration

cs-api-definition
public Type DataType { get; set; }

Property Value

Type

IsFilterable

Gets or sets a value that indicates whether the column generated for this data member is filterable.

Declaration

cs-api-definition
public bool IsFilterable { get; set; }

Property Value

bool

IsSortable

Gets or sets a value that indicates whether the column generated for this data member is sortable.

Declaration

cs-api-definition
public bool IsSortable { get; set; }

Property Value

bool

MemberName

Gets or sets the data member name.

Declaration

cs-api-definition
public string MemberName { get; set; }

Property Value

string