package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiSheetsV4Model.TextFormatSource

Sourcetype t = {
  1. foregroundColor : Color.t;
    (*

    The foreground color of the text. Deprecated: Use foreground_color_style.

    *)
  2. foregroundColorStyle : ColorStyle.t;
    (*

    The foreground color of the text. If foreground_color is also set, this field takes precedence.

    *)
  3. fontFamily : string;
    (*

    The font family.

    *)
  4. fontSize : int;
    (*

    The size of the font.

    *)
  5. bold : bool;
    (*

    True if the text is bold.

    *)
  6. italic : bool;
    (*

    True if the text is italicized.

    *)
  7. strikethrough : bool;
    (*

    True if the text has a strikethrough.

    *)
  8. underline : bool;
    (*

    True if the text is underlined.

    *)
}
Sourceval foregroundColor : (t, Color.t) GapiLens.t
Sourceval foregroundColorStyle : (t, ColorStyle.t) GapiLens.t
Sourceval fontFamily : (t, string) GapiLens.t
Sourceval fontSize : (t, int) GapiLens.t
Sourceval bold : (t, bool) GapiLens.t
Sourceval italic : (t, bool) GapiLens.t
Sourceval strikethrough : (t, bool) GapiLens.t
Sourceval underline : (t, bool) 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