MAUI

  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class DataGridTextColumn

    Show / Hide Table of Contents

    Class DataGridTextColumn

    Represents a SfDataGrid column that hosts textual Content in its cells.

    Inheritance
    System.Object
    DataGridColumn
    DataGridTextColumn
    Implements
    System.IDisposable
    Inherited Members
    DataGridColumn.ColumnWidthModeProperty
    DataGridColumn.CellStyleProperty
    DataGridColumn.HeaderStyleProperty
    DataGridColumn.ActualWidthProperty
    DataGridColumn.MappingNameProperty
    DataGridColumn.HeaderTextProperty
    DataGridColumn.AllowSortingProperty
    DataGridColumn.FormatProperty
    DataGridColumn.WidthProperty
    DataGridColumn.HeaderTemplateProperty
    DataGridColumn.MinimumWidthProperty
    DataGridColumn.MaximumWidthProperty
    DataGridColumn.VisibleProperty
    DataGridColumn.CacheDisplayBindingProperty
    DataGridColumn.CellPaddingProperty
    DataGridColumn.HeaderPaddingProperty
    DataGridColumn.HeaderTextAlignmentProperty
    DataGridColumn.CellTextAlignmentProperty
    DataGridColumn.SortModeProperty
    DataGridColumn.SetConverterForDisplayBinding()
    DataGridColumn.GetFormattedValue(Object)
    DataGridColumn.Dispose()
    DataGridColumn.Dispose(Boolean)
    DataGridColumn.ColumnWidthMode
    DataGridColumn.CellStyle
    DataGridColumn.ActualWidth
    DataGridColumn.AllowSorting
    DataGridColumn.MappingName
    DataGridColumn.HeaderStyle
    DataGridColumn.HeaderText
    DataGridColumn.Format
    DataGridColumn.Width
    DataGridColumn.HeaderTemplate
    DataGridColumn.DisplayBinding
    DataGridColumn.MinimumWidth
    DataGridColumn.MaximumWidth
    DataGridColumn.Visible
    DataGridColumn.CellType
    DataGridColumn.CellPadding
    DataGridColumn.HeaderPadding
    DataGridColumn.HeaderTextAlignment
    DataGridColumn.CellTextAlignment
    DataGridColumn.SortMode
    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()

    Implements

    System.IDisposable
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved