Class GridSwitchColumn
Represents a SfDataGrid column that hosts SfSwitchControl view in its cells.
Implements
Inherited Members
Namespace: Syncfusion.SfDataGrid.XForms
Assembly: Syncfusion.SfDataGrid.XForms.dll
Syntax
public class GridSwitchColumn : GridColumn, IDisposable
Remarks
Use GridSwitchColumn to display columns of Boolean data as a SfSwitchControl.
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 GridSwitchColumn() { MappingName = "IsClosed" });
.
The data can also be populated to the column by using the DisplayBinding property. The Binding property is applied to the SfSwitchControl 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
GridSwitchColumn()
Initializes a new instance of the GridSwitchColumn class.
Declaration
public GridSwitchColumn()