TableCellStyle
import type { TableCellStyle } from "https://googleapis.deno.dev/v1/docs:v1.ts";
The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style.
interface TableCellStyle {
backgroundColor?: OptionalColor;
borderBottom?: TableCellBorder;
borderLeft?: TableCellBorder;
borderRight?: TableCellBorder;
borderTop?: TableCellBorder;
columnSpan?: number;
contentAlignment?:
| "CONTENT_ALIGNMENT_UNSPECIFIED"
| "CONTENT_ALIGNMENT_UNSUPPORTED"
| "TOP"
| "MIDDLE"
| "BOTTOM";
paddingBottom?: Dimension;
paddingLeft?: Dimension;
paddingRight?: Dimension;
paddingTop?: Dimension;
rowSpan?: number;
}§Properties
§
backgroundColor?: OptionalColor
[src]The background color of the cell.
§
borderBottom?: TableCellBorder
[src]The bottom border of the cell.
§
borderLeft?: TableCellBorder
[src]The left border of the cell.
§
borderRight?: TableCellBorder
[src]The right border of the cell.
§
borderTop?: TableCellBorder
[src]The top border of the cell.