Class Row
Inheritance
System.Object
Syncfusion.EJ2.EJTagHelper
Row
Namespace: Syncfusion.EJ2.Spreadsheet
Assembly: Syncfusion.EJ2.dll
Syntax
public class Row : EJTagHelper
Constructors
Row()
Declaration
public Row()
Properties
Cells
Specifies cell and its properties for the row.
Declaration
public List<Cell> Cells { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Cell> | The default value is null |
CustomHeight
specifies custom height of the row.
Declaration
public bool CustomHeight { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
Format
Specifies format of the row.
Declaration
public SpreadsheetFormat Format { get; set; }
Property Value
Type | Description |
---|---|
SpreadsheetFormat | The default value is null |
Height
Specifies height of the row.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The default value is 20.0 |
Hidden
To hide/show the row in spreadsheet.
Declaration
public bool Hidden { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
Index
Specifies the index to the row. Based on the index, row properties are applied.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The default value is 0 |
IsReadOnly
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 bool IsReadOnly { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |