Interface IGridVolatileData
Implements the interface for a volatile data cache to be used with the VolatileData property.
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public interface IGridVolatileData : IGridData
Properties
ColCount
Gets or sets a cached value for column count.
Declaration
int ColCount { get; set; }
Property Value
Type |
---|
System.Int32 |
HasColCount
Gets a value indicating whether a value for column count has been cached.
Declaration
bool HasColCount { get; }
Property Value
Type |
---|
System.Boolean |
HasRowCount
Gets a value indicating whether a value for row count has been cached.
Declaration
bool HasRowCount { get; }
Property Value
Type |
---|
System.Boolean |
RowCount
Gets or sets a cached value for row count.
Declaration
int RowCount { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
Clear()
Empty the cache.
Declaration
void Clear()
ResetColCount()
Clears cached value for column count.
Declaration
void ResetColCount()
ResetItem(GridCellPos)
Resets cache for a specific cell.
Declaration
void ResetItem(GridCellPos cell)
Parameters
Type | Name | Description |
---|---|---|
GridCellPos | cell | The cell coordinates. |
ResetRowCount()
Clears cached value for row count.
Declaration
void ResetRowCount()