Class GridRowColEntry
Defines a row or a column by an index, and length (width or height).
Inheritance
System.Object
GridRowColEntry
Namespace: Syncfusion.Windows.Forms.Grid.Design
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridRowColEntry : Object
Constructors
GridRowColEntry()
Initializes an empty instances of GridRowColEntry class.
Declaration
public GridRowColEntry()
GridRowColEntry(Int32, Int32)
Initializes an empty instances of GridRowColEntry class.
Declaration
public GridRowColEntry(int index, int length)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | Index of the column or row |
| System.Int32 | length | If the GridRowColEntry object is for a column, this is the width of the column. If the GridRowColEntry object is for a row, this is the height of the row. |
Properties
Index
Gets or sets the index of the column or row represented in the GridRowColEntry object.
Declaration
public int Index { get; set; }
Property Value
| Type |
|---|
| System.Int32 |
Length
Gets or sets the Length. If the GridRowColEntry object is for a column, this is the width of the column.
If the GridRowColEntry object is for a row, this is the height of the row.
Declaration
public int Length { get; set; }
Property Value
| Type |
|---|
| System.Int32 |