Interface IGridVolatileCellStylesHost
Defines the work flow for volatile cell styles rendering.
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public interface IGridVolatileCellStylesHost
Properties
BaseStylesMap
Gets the GridBaseStylesMap that is associated with this GridModel.
Declaration
GridBaseStylesMap BaseStylesMap { get; }
Property Value
Type |
---|
GridBaseStylesMap |
Methods
CommitCellInfo(RowColumnIndex, GridStyleInfo, StyleInfoProperty)
Occurs when the model is about to save style information about a specific cell.
Declaration
void CommitCellInfo(RowColumnIndex cell, GridStyleInfo style, StyleInfoProperty sip)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | cell | |
GridStyleInfo | style | |
StyleInfoProperty | sip |
LookupCellModel(String)
Returns a GridCellModelBase for the specified id / cell type name.
Declaration
GridCellModelBase LookupCellModel(string id)
Parameters
Type | Name | Description |
---|---|---|
System.String | id | Cell type name. |
Returns
Type | Description |
---|---|
GridCellModelBase | The GridCellModelBase for the given id. |
Remarks
Calls
QueryBaseStyles(RowColumnIndex, GridStyleInfo)
Occurs when the model queries information about base styles at a specific cell.
Declaration
IStyleInfo[] QueryBaseStyles(RowColumnIndex cell, GridStyleInfo style)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | cell | |
GridStyleInfo | style |
Returns
Type |
---|
IStyleInfo[] |
QueryCellInfo(RowColumnIndex, GridStyleInfo)
Occurs when the model queries for style information about a specific cell.
Declaration
void QueryCellInfo(RowColumnIndex cell, GridStyleInfo style)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | cell | |
GridStyleInfo | style |