Ajout de commandes pour montrer/cacher colonnes

This commit is contained in:
Matthieu Dubuget 2017-11-25 11:23:36 +01:00
parent bb1e08cf62
commit 0aa0743ed0
2 changed files with 9 additions and 1 deletions

View File

@ -169,6 +169,14 @@ sig
(* Shows the row at the given index. *)
val show_row: t -> index:int -> unit [@@js.call "showRows"]
(* Hides the column at the given index. *)
val hide_column: t -> index:int -> unit [@@js.call "hideColumns"]
(* Show the colummn at the given index. *)
val show_column: t -> index:int -> unit [@@js.call "showColumns"]
val show_columns: t -> from:int -> num:int -> unit [@@js.call "showColumns"]
type ui
type menu
val get_ui: unit -> ui [@@js.global "SpreadsheetApp.getUi"]

View File

@ -1,6 +1,6 @@
opam-version: "2.0"
name: "ocaml-google-apps"
version: "0.1"
version: "0.2"
synopsis: "OCaml binding to Google Apps"
description: """
Binding to Google Apps using gen_js_api (https://github.com/LexiFi/gen_js_api):