Interface IGridRowHeight
This interface provides routines for getting and setting row heights for elements. Implement it in derived elements when custom row heights are needed.
Namespace: Syncfusion.Windows.Forms.Grid.Grouping
Assembly: Syncfusion.Grid.Grouping.Windows.dll
Syntax
public interface IGridRowHeight
Properties
HasRowHeight
Checks if row height was modified.
Declaration
bool HasRowHeight { get; }
Property Value
Type |
---|
System.Boolean |
RowHeight
The row height.
Declaration
int RowHeight { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
SupportsRowHeight()
Determines if elements support storing row heights.
Declaration
bool SupportsRowHeight()
Returns
Type | Description |
---|---|
System.Boolean | returns boolean value to indicate support row height |