Ajout de commandes pour montrer/cacher colonnes
This commit is contained in:
parent
bb1e08cf62
commit
0aa0743ed0
@ -169,6 +169,14 @@ sig
|
|||||||
(* Shows the row at the given index. *)
|
(* Shows the row at the given index. *)
|
||||||
val show_row: t -> index:int -> unit [@@js.call "showRows"]
|
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 ui
|
||||||
type menu
|
type menu
|
||||||
val get_ui: unit -> ui [@@js.global "SpreadsheetApp.getUi"]
|
val get_ui: unit -> ui [@@js.global "SpreadsheetApp.getUi"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
opam-version: "2.0"
|
opam-version: "2.0"
|
||||||
name: "ocaml-google-apps"
|
name: "ocaml-google-apps"
|
||||||
version: "0.1"
|
version: "0.2"
|
||||||
synopsis: "OCaml binding to Google Apps"
|
synopsis: "OCaml binding to Google Apps"
|
||||||
description: """
|
description: """
|
||||||
Binding to Google Apps using gen_js_api (https://github.com/LexiFi/gen_js_api):
|
Binding to Google Apps using gen_js_api (https://github.com/LexiFi/gen_js_api):
|
||||||
|
Loading…
Reference in New Issue
Block a user