Class GridTextColumn
Represents a SfDataGrid column that hosts textual content in its cells.
Implements
System.IDisposable
Inherited Members
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.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" });
Constructors
GridTextColumn()
Initializes a new instance of the GridTextColumn class.
Declaration
public GridTextColumn()
Implements
System.IDisposable