package gapi-ocaml

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

Module GapiSheetsV4Model.SortSpecSource

Sourcetype t = {
  1. dimensionIndex : int;
    (*

    The dimension the sort should be applied to.

    *)
  2. dataSourceColumnReference : DataSourceColumnReference.t;
    (*

    Reference to a data source column.

    *)
  3. sortOrder : string;
    (*

    The order data should be sorted.

    *)
  4. foregroundColor : Color.t;
    (*

    The foreground color to sort by; cells with this foreground color are sorted to the top. Mutually exclusive with background_color. Deprecated: Use foreground_color_style.

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

    The foreground color to sort by; cells with this foreground color are sorted to the top. Mutually exclusive with background_color, and must be an RGB-type color. If foreground_color is also set, this field takes precedence.

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

    The background fill color to sort by; cells with this fill color are sorted to the top. Mutually exclusive with foreground_color. Deprecated: Use background_color_style.

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

    The background fill color to sort by; cells with this fill color are sorted to the top. Mutually exclusive with foreground_color, and must be an RGB-type color. If background_color is also set, this field takes precedence.

    *)
}
Sourceval dimensionIndex : (t, int) GapiLens.t
Sourceval dataSourceColumnReference : (t, DataSourceColumnReference.t) GapiLens.t
Sourceval sortOrder : (t, string) GapiLens.t
Sourceval foregroundColor : (t, Color.t) GapiLens.t
Sourceval foregroundColorStyle : (t, ColorStyle.t) GapiLens.t
Sourceval backgroundColor : (t, Color.t) GapiLens.t
Sourceval backgroundColorStyle : (t, ColorStyle.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
OCaml

Innovation. Community. Security.