Class RowBuilder
Inheritance
System.Object
RowBuilder
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: Syncfusion.EJ2.dll
Syntax
public class RowBuilder : ControlBuilder
Constructors
RowBuilder()
Declaration
RowBuilder(List<Row>)
Declaration
public RowBuilder(List<Row> collection)
Parameters
Type |
Name |
Description |
System.Collections.Generic.List<Row> |
collection |
|
Methods
Add()
Declaration
Cells(Action<CellBuilder>)
Declaration
public RowBuilder Cells(Action<CellBuilder> cells)
Parameters
Returns
Cells(List<Cell>)
Specifies cell and its properties for the row.
Declaration
public RowBuilder Cells(List<Cell> cells)
Parameters
Type |
Name |
Description |
System.Collections.Generic.List<Cell> |
cells |
|
Returns
CustomHeight(Boolean)
specifies custom height of the row.
Declaration
public RowBuilder CustomHeight(bool customHeight)
Parameters
Type |
Name |
Description |
System.Boolean |
customHeight |
|
Returns
Specifies format of the row.
Declaration
public RowBuilder Format(SpreadsheetFormat format)
Parameters
Returns
Declaration
public RowBuilder Format(Action<SpreadsheetFormatBuilder> format)
Parameters
Returns
Height(Int32)
Specifies height of the row.
Declaration
public RowBuilder Height(int height)
Parameters
Type |
Name |
Description |
System.Int32 |
height |
|
Returns
Hidden(Boolean)
To hide/show the row in spreadsheet.
Declaration
public RowBuilder Hidden(bool hidden)
Parameters
Type |
Name |
Description |
System.Boolean |
hidden |
|
Returns
Index(Int32)
Specifies the index to the row. Based on the index, row properties are applied.
Declaration
public RowBuilder Index(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Returns