Class RowBuilder
Inheritance
System.Object
Syncfusion.EJ2.ControlBuilder
RowBuilder
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(Double)
Specifies height of the row.
Declaration
public RowBuilder Height(double height)
Parameters
Type |
Name |
Description |
System.Double |
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
IsReadOnly(Boolean)
Represents whether a row in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.
Declaration
public RowBuilder IsReadOnly(bool isReadOnly)
Parameters
Type |
Name |
Description |
System.Boolean |
isReadOnly |
|
Returns