package gapi-ocaml

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

Module GapiSheetsV4Model.GridDataSource

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

    The first row this GridData refers to, zero-based.

    *)
  2. startColumn : int;
    (*

    The first column this GridData refers to, zero-based.

    *)
  3. rowData : RowData.t list;
    (*

    The data in the grid, one entry per row, starting with the row in startRow. The values in RowData will correspond to columns starting at start_column.

    *)
  4. rowMetadata : DimensionProperties.t list;
    (*

    Metadata about the requested rows in the grid, starting with the row in start_row.

    *)
  5. columnMetadata : DimensionProperties.t list;
    (*

    Metadata about the requested columns in the grid, starting with the column in start_column.

    *)
}
Sourceval startRow : (t, int) GapiLens.t
Sourceval startColumn : (t, int) GapiLens.t
Sourceval rowData : (t, RowData.t list) GapiLens.t
Sourceval rowMetadata : (t, DimensionProperties.t list) GapiLens.t
Sourceval columnMetadata : (t, DimensionProperties.t list) 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