Interface IGridRowColSizeDictionary
Provides the functionality for GridModelRowColSizeIndexer to store row heights and column widths.
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public interface IGridRowColSizeDictionary
Properties
Item[Int32]
The row height or column with a given index.
Declaration
int this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
System.Int32 |
Modified
Gets a value indicating whether the dictionary was modified.
Declaration
bool Modified { get; }
Property Value
Type |
---|
System.Boolean |
Methods
InsertItems(Int32, Int32)
Occurs when rows or columns are inserted.
Declaration
void InsertItems(int index, int count)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | Row or column index. |
System.Int32 | count | Number of rows or columns. |
MoveItems(Int32, Int32, Int32)
Occurs when rows or columns are moved.
Declaration
void MoveItems(int from, int count, int dest)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | First row or column index. |
System.Int32 | count | Number of rows or columns. |
System.Int32 | dest | The Destination. |
RemoveItems(Int32, Int32)
Occurs when rows or columns are removed.
Declaration
void RemoveItems(int from, int count)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | First row or column index. |
System.Int32 | count | Number of rows or columns. |
ResetModified()
Resets the Modified flag.
Declaration
void ResetModified()