Previous Next Contents

listbox: the listbox widget

value create : widget -> options list -> widget 
create p options creates a new widget with parent p. Options are restricted to the widget class subset, and checked dynamically.
value create_named : widget -> string -> options list -> widget 
create p name options creates a new widget with parent p and new patch component name. Options are restricted to the widget class subset, and checked dynamically.
value activate : widget -> index -> unit 
tk invocation: widget activate index
value bbox : widget -> index -> int * int * int * int 
tk invocation: widget bbox index
value configure : widget -> options list -> unit 
tk invocation: widget configure options list
value configure_get : widget -> string 
tk invocation: widget configure
value curselection : widget -> index list 
tk invocation: widget curselection
value delete : widget -> index -> index -> unit 
tk invocation: widget delete index index
value get : widget -> index -> string 
tk invocation: widget get index
value get_range : widget -> index -> index -> string list 
tk invocation: widget get index index
value index : widget -> index -> int 
tk invocation: widget index index
value insert : widget -> index -> string list -> unit 
tk invocation: widget insert index string list
value nearest : widget -> int -> index 
tk invocation: widget nearest int
value scan_dragto : widget -> int -> int -> unit 
tk invocation: widget scan dragto int int
value scan_mark : widget -> int -> int -> unit 
tk invocation: widget scan mark int int
value see : widget -> index -> unit 
tk invocation: widget see index
value selection_anchor : widget -> index -> unit 
tk invocation: widget selection anchor index
value selection_clear : widget -> index -> index -> unit 
tk invocation: widget selection clear index index
value selection_includes : widget -> index -> bool 
tk invocation: widget selection includes index
value selection_set : widget -> index -> index -> unit 
tk invocation: widget selection set index index
value size : widget -> int 
tk invocation: widget size
value xview : widget -> scrollValue -> unit 
tk invocation: widget yview scrollValue
value xview_get : widget -> float * float 
tk invocation: widget xview
value xview_index : widget -> index -> unit 
tk invocation: widget xview index
value yview : widget -> scrollValue -> unit 
tk invocation: widget yview scrollValue
value yview_get : widget -> float * float 
tk invocation: widget yview
value yview_index : widget -> index -> unit 
tk invocation: widget yview index

Previous Next Contents