Class DataGridTextColumn
Represents a SfDataGrid column that hosts textual Content in its cells.
Implements
Inherited Members
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridTextColumn : DataGridColumn, IDisposable
Remarks
Use DataGridTextColumn to display columns of data as text.
To create a column, add it to the Columns collection and to populate the data
to the column set the MappingName to the property in the data source.
dataGrid.Columns.Add(new DataGridTextColumn() { MappingName = "OrderID" });
.
The data can also be populated to the column by using the DataGridColumn.DisplayBinding property. The Binding property is applied to the Microsoft.Maui.Controls.Label view created in the column. The Microsoft.Maui.Controls.BindableObject.BindingContext for the view in each cell is the data item for the row the cell is present. Therefore, to set up the binding you only have to set the Microsoft.Maui.Controls.Binding.Path. Optionally, you can specify a Microsoft.Maui.Controls.Binding.Converter if you want to convert the data.
Constructors
DataGridTextColumn()
Initializes a new instance of the DataGridTextColumn class.
Declaration
public DataGridTextColumn()