Contains the arguments for HTML editor table commands.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class HtmlEditorTableCommandArgsContains the arguments for HTML editor table commands.
public HtmlEditorTableCommandArgs()Gets or sets the table border size.
public int Border { get; set; }
| Type | Description |
|---|---|
| int | Gets or sets the table border size. |
Gets or sets a value indicating whether the bottom border should be applied.
public bool BorderBottom { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether the bottom border should be applied. |
Gets or sets the selected cell border color.
public string BorderColor { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the selected cell border color. |
Gets or sets a value indicating whether the left border should be applied.
public bool BorderLeft { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether the left border should be applied. |
Gets or sets a value indicating whether the right border should be applied.
public bool BorderRight { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether the right border should be applied. |
Gets or sets the selected cell border style preset.
public string BorderStyle { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the selected cell border style preset. |
Gets or sets a value indicating whether the top border should be applied.
public bool BorderTop { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether the top border should be applied. |
Gets or sets the selected cell border width in pixels.
public int? BorderWidthPx { get; set; }
| Type | Description |
|---|---|
| int? | Gets or sets the selected cell border width in pixels. |
Gets or sets the selected cell background color.
public string CellBackground { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the selected cell background color. |
Gets or sets the selected cell border style.
public string CellBorder { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the selected cell border style. |
Gets or sets the selected cell padding.
public string CellPadding { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the selected cell padding. |
Gets or sets the selected cell padding in pixels.
public int? CellPaddingPx { get; set; }
| Type | Description |
|---|---|
| int? | Gets or sets the selected cell padding in pixels. |
Gets or sets the selected cell horizontal alignment.
public string CellTextAlign { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the selected cell horizontal alignment. |
Gets or sets the selected cell vertical alignment.
public string CellVerticalAlign { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the selected cell vertical alignment. |
Gets or sets the selected column width.
public string ColumnWidth { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the selected column width. |
Gets or sets the selected column width in pixels.
public int? ColumnWidthPx { get; set; }
| Type | Description |
|---|---|
| int? | Gets or sets the selected column width in pixels. |
Gets or sets the number of columns.
public int Columns { get; set; }
| Type | Description |
|---|---|
| int | Gets or sets the number of columns. |
Gets or sets the format string used to label generated header cells. {0} is replaced with the 1-based column index.
public string DefaultColumnHeader { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the format string used to label generated header cells. {0} is replaced with the 1-based column index. |
Gets or sets a value indicating whether the table has a header row.
public bool HeaderRow { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether the table has a header row. |
Gets or sets the number of body rows.
public int Rows { get; set; }
| Type | Description |
|---|---|
| int | Gets or sets the number of body rows. |
Gets or sets the table width.
public string Width { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the table width. |