Class GridTextColumn
Represents a SfDataGrid column that hosts textual Content in its cells.
Implements
Inherited Members
Namespace: Syncfusion.SfDataGrid.XForms
Assembly: Syncfusion.SfDataGrid.XForms.dll
Syntax
public class GridTextColumn : GridColumn, IDisposable
Remarks
Use GridTextColumn 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 GridTextColumn() { MappingName = "OrderID" });
.
The data can also be populated to the column by using the DisplayBinding property. The Binding property is applied to the Xamarin.Forms.Label view created in the column. The Xamarin.Forms.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 Xamarin.Forms.Binding.Path. Optionally, you can specify a Xamarin.Forms.Binding.Converter if you want to convert the data.
Constructors
GridTextColumn()
Initializes a new instance of the GridTextColumn class.
Declaration
public GridTextColumn()