1999-11-30 06:59:39 -08:00
|
|
|
(* type *)
|
|
|
|
type scrollValue = [
|
2000-04-02 18:57:52 -07:00
|
|
|
| `Page of int (* tk option: scroll <int> page *)
|
|
|
|
| `Unit of int (* tk option: scroll <int> unit *)
|
|
|
|
| `Moveto of float (* tk option: moveto <float> *)
|
1999-11-30 06:59:39 -08:00
|
|
|
]
|
|
|
|
(* /type *)
|
|
|
|
|