blob: f3ab019c06510cf67a4d1e7612bd9f65ec8f2d35 (
plain)
1
2
3
4
5
6
7
8
|
(* type *)
type scrollValue = [
| `Page(int) (* tk option: scroll <int> page *)
| `Unit(int) (* tk option: scroll <int> unit *)
| `Moveto(float) (* tk option: moveto <float> *)
]
(* /type *)
|