Interface IColumnElement
Provides the common functionalities of Columns in SfDataGrid.
Namespace: Syncfusion.UI.Xaml.DataGrid
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public interface IColumnElement : IElement, INotifyPropertyChanged, IComparable
Properties
ColumnSpan
Gets the value for ColumnSpan.
Declaration
int ColumnSpan { get; }
Property Value
Type |
---|
System.Int32 |
IsEditing
Gets the value indicating whether the current element is in editing or not.
Declaration
bool IsEditing { get; }
Property Value
Type |
---|
System.Boolean |
IsSpannedColumn
Gets the value indicating whether the column is spanned or not.
Declaration
bool IsSpannedColumn { get; }
Property Value
Type |
---|
System.Boolean |
Renderer
Gets the IGridCellRenderer.
Declaration
IGridCellRenderer Renderer { get; }
Property Value
Type |
---|
IGridCellRenderer |
RowIndex
Gets the value for RowIndex.
Declaration
int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |
RowSpan
Gets the value for RowSpan.
Declaration
int RowSpan { get; }
Property Value
Type |
---|
System.Int32 |
Methods
UpdateCellStyle(Object)
Updates the Cell style.
Declaration
void UpdateCellStyle(object dataContext)
Parameters
Type | Name | Description |
---|---|---|
System.Object | dataContext | The DataContext. |