Class DataGridTemplateColumn
Represents a DataGridColumn that uses a Microsoft.Maui.Controls.DataTemplate to describe the content of each associated grid cell.
Inherited Members
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataGridTemplateColumn : DataGridColumn, IDataDescriptorPeer, IDataGridColumnDefinition
Constructors
DataGridTemplateColumn()
Declaration
public DataGridTemplateColumn()
Fields
GroupDescriptorProperty
Identifies the GroupDescriptor property.
Declaration
public static readonly BindableProperty GroupDescriptorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SortDescriptorProperty
Identifies the SortDescriptor property.
Declaration
public static readonly BindableProperty SortDescriptorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
GroupDescriptor
Gets or sets the GroupDescriptorBase that defines whether the column may be grouped by the user using drag-and-drop operation.
Declaration
public GroupDescriptorBase GroupDescriptor { get; set; }
Property Value
GroupDescriptorBase
|
SortDescriptor
Gets or sets the SortDescriptorBase that defines how the column will be sorted by the user upon a Tap gesture over the column header.
Declaration
public SortDescriptorBase SortDescriptor { get; set; }
Property Value
SortDescriptorBase
|
Methods
GetValueForInstance(Object)
Retrieves the column value for the provided object instance. This actually represents the content of a grid cell where a cell is defined by a row (data item) and a column.
Declaration
public override object GetValueForInstance(object instance)
Parameters
System.Object
instance
|
Returns
System.Object
|