Represents a single column inside a Table.
Object
Namespace: Radzen.Documents.Spreadsheet
Assembly: Radzen.Blazor.dll
public class TableColumnCalculated-column formula. Setting this populates every data row in this column. Use Excel structured-reference syntax ([@[Q1]]) or plain cell references.
public string Formula { get; set; }
| Type | Description |
|---|---|
| string | Calculated-column formula. Setting this populates every data row in this column. Use Excel structured-reference syntax ([@[Q1]]) or plain cell references. |
Position of the column inside the table (zero-based).
public int Index { get; }
| Type | Description |
|---|---|
| int | Position of the column inside the table (zero-based). |
Column name. Defaults to the header cell's value when ShowHeaderRow is true, otherwise Column1, Column2, ...
public string Name { get; set; }
| Type | Description |
|---|---|
| string | Column name. Defaults to the header cell's value when ShowHeaderRow is true, otherwise Column1, Column2, ... |
The data-body range of this column (excludes header and totals rows).
public Documents.Spreadsheet.RangeRef Range { get; }
| Type | Description |
|---|---|
| Documents.Spreadsheet.RangeRef | The data-body range of this column (excludes header and totals rows). |
The owning table.
public Documents.Spreadsheet.Table Table { get; }
| Type | Description |
|---|---|
| Documents.Spreadsheet.Table | The owning table. |
Aggregation displayed in this column's totals-row cell.
public Documents.Spreadsheet.TotalsCalculation TotalsCalculation { get; set; }
| Type | Description |
|---|---|
| Documents.Spreadsheet.TotalsCalculation | Aggregation displayed in this column's totals-row cell. |
The totals cell for this column, or null when the totals row is hidden.
public Documents.Spreadsheet.CellRef? TotalsCell { get; }
| Type | Description |
|---|---|
| Documents.Spreadsheet.CellRef? | The totals cell for this column, or null when the totals row is hidden. |