Module GapiSheetsV4Model.CellFormatSource

Sourcetype t = {
  1. numberFormat : NumberFormat.t;
    (*

    A format describing how number values should be represented to the user.

    *)
  2. backgroundColor : Color.t;
    (*

    The background color of the cell. Deprecated: Use background_color_style.

    *)
  3. backgroundColorStyle : ColorStyle.t;
    (*

    The background color of the cell. If background_color is also set, this field takes precedence.

    *)
  4. borders : Borders.t;
    (*

    The borders of the cell.

    *)
  5. padding : Padding.t;
    (*

    The padding of the cell.

    *)
  6. horizontalAlignment : string;
    (*

    The horizontal alignment of the value in the cell.

    *)
  7. verticalAlignment : string;
    (*

    The vertical alignment of the value in the cell.

    *)
  8. wrapStrategy : string;
    (*

    The wrap strategy for the value in the cell.

    *)
  9. textDirection : string;
    (*

    The direction of the text in the cell.

    *)
  10. textFormat : TextFormat.t;
    (*

    The format of the text in the cell (unless overridden by a format run). Setting a cell-level link here clears the cell's existing links. Setting the link field in a TextFormatRun takes precedence over the cell-level link.

    *)
  11. hyperlinkDisplayType : string;
    (*

    If one exists, how a hyperlink should be displayed in the cell.

    *)
  12. textRotation : TextRotation.t;
    (*

    The rotation applied to text in the cell.

    *)
}
Sourceval numberFormat : (t, NumberFormat.t) GapiLens.t
Sourceval backgroundColor : (t, Color.t) GapiLens.t
Sourceval backgroundColorStyle : (t, ColorStyle.t) GapiLens.t
Sourceval borders : (t, Borders.t) GapiLens.t
Sourceval padding : (t, Padding.t) GapiLens.t
Sourceval horizontalAlignment : (t, string) GapiLens.t
Sourceval verticalAlignment : (t, string) GapiLens.t
Sourceval wrapStrategy : (t, string) GapiLens.t
Sourceval textDirection : (t, string) GapiLens.t
Sourceval textFormat : (t, TextFormat.t) GapiLens.t
Sourceval hyperlinkDisplayType : (t, string) GapiLens.t
Sourceval textRotation : (t, TextRotation.t) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t