[]
Grid row that can be edited, used as a tree node, maintains a collection of cell styles associated with each column, and evaluates cells that contain formulas (strings starting with an equals sign).
public class ExcelRow : GroupRow
| Name | Description |
|---|---|
| ExcelRow() | |
| ExcelRow(ExcelRow) |
| Name | Description |
|---|---|
| GetCellAngle(Column) | Gets the angle to a cell in this row. |
| GetCellIndent(Column) | Gets the Indent to a cell in this row. |
| GetCellStyle(Column) | Gets the style applied to a cell in this row. |
| GetDataEditor(Column) | Gets the data in a cell as it should be shown in the editor (full formulas, raw values). |
| GetDataFormatted(Column) | Overridden to apply formatting when getting data. |
| GetDataRaw(Column) | Gets the raw data in a cell (evaluates formulas but does not format the values). |
| GetFormula(Column) | Gets the formula in a cell. |
| GetValue(Column) | Gets the value in a cell, evaluating expressions represented by strings that start with an equals sign. |
| SetCellAngle(Column, double) | Applies a angle to a cell in this row. |
| SetCellIndent(Column, double) | Applies Indent to a cell in this row. |
| SetCellStyle(Column, CellStyle) | Applies a style to a cell in this row. |