package gapi-ocaml

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

Module GapiSheetsV4Model.GridRangeSource

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

    The sheet this range is on.

    *)
  2. startRowIndex : int;
    (*

    The start row (inclusive) of the range, or not set if unbounded.

    *)
  3. endRowIndex : int;
    (*

    The end row (exclusive) of the range, or not set if unbounded.

    *)
  4. startColumnIndex : int;
    (*

    The start column (inclusive) of the range, or not set if unbounded.

    *)
  5. endColumnIndex : int;
    (*

    The end column (exclusive) of the range, or not set if unbounded.

    *)
}
Sourceval sheetId : (t, int) GapiLens.t
Sourceval startRowIndex : (t, int) GapiLens.t
Sourceval endRowIndex : (t, int) GapiLens.t
Sourceval startColumnIndex : (t, int) GapiLens.t
Sourceval endColumnIndex : (t, int) 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