Previous Next Contents

text: the text 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 bbox : widget -> textIndex -> int * int * int * int 
tk invocation: widget bbox textIndex
value compare : widget -> textIndex -> comparison -> textIndex -> bool 
tk invocation: widget compare textIndex comparison textIndex
value configure : widget -> options list -> unit 
tk invocation: widget configure options list
value configure_get : widget -> string 
tk invocation: widget configure
value debug : widget -> bool -> unit 
tk invocation: widget debug bool
value delete : widget -> textIndex -> textIndex -> unit 
tk invocation: widget delete textIndex textIndex
value delete_char : widget -> textIndex -> unit 
tk invocation: widget delete textIndex
value dlineinfo : widget -> textIndex -> int * int * int * int * int 
tk invocation: widget dlineinfo textIndex
value get : widget -> textIndex -> textIndex -> string 
tk invocation: widget get textIndex textIndex
value get_char : widget -> textIndex -> string 
tk invocation: widget get textIndex
value index : widget -> textIndex -> index 
tk invocation: widget index textIndex
value insert : widget -> textIndex -> string -> textTag list -> unit 
tk invocation: widget insert textIndex string textTag list
value mark_gravity_get : widget -> textMark -> markDirection 
tk invocation: widget mark gravity textMark
value mark_gravity_set : widget -> textMark -> markDirection -> unit 
tk invocation: widget mark gravity textMark markDirection
value mark_names : widget -> textMark list 
tk invocation: widget mark names
value mark_set : widget -> textMark -> textIndex -> unit 
tk invocation: widget mark set textMark textIndex
value mark_unset : widget -> textMark list -> unit 
tk invocation: widget mark unset textMark list
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 search : widget -> textSearch list -> string -> textIndex -> textIndex -> index 
tk invocation: widget search textSearch list -- string textIndex textIndex
value see : widget -> textIndex -> unit 
tk invocation: widget see textIndex
value tag_add : widget -> textTag -> textIndex -> textIndex -> unit 
tk invocation: widget tag add textTag textIndex textIndex
value tag_add_char : widget -> textTag -> textIndex -> unit 
tk invocation: widget tag add textTag textIndex
value tag_allnames : widget -> textTag list 
tk invocation: widget tag names
value tag_configure : widget -> textTag -> options list -> unit 
tk invocation: widget tag configure textTag options list
value tag_delete : widget -> textTag list -> unit 
tk invocation: widget tag delete textTag list
value tag_indexnames : widget -> textIndex -> textTag list 
tk invocation: widget tag names textIndex
value tag_lower_below : widget -> textTag -> textTag -> unit 
tk invocation: widget tag lower textTag textTag
value tag_lower_bot : widget -> textTag -> unit 
tk invocation: widget tag lower textTag
value tag_nextrange : widget -> textTag -> textIndex -> textIndex -> index * index 
tk invocation: widget tag nextrange textTag textIndex textIndex
value tag_raise_above : widget -> textTag -> textTag -> unit 
tk invocation: widget tag raise textTag textTag
value tag_raise_top : widget -> textTag -> unit 
tk invocation: widget tag raise textTag
value tag_ranges : widget -> textTag -> index list 
tk invocation: widget tag ranges textTag
value tag_remove : widget -> textTag -> textIndex -> textIndex -> unit 
tk invocation: widget tag remove textTag textIndex textIndex
value tag_remove_char : widget -> textTag -> textIndex -> unit 
tk invocation: widget tag remove textTag textIndex
value window_configure : widget -> textTag -> options list -> unit 
tk invocation: widget window configure textTag options list
value window_create : widget -> textIndex -> options list -> unit 
tk invocation: widget window create textIndex options list
value window_names : widget -> widget list 
tk invocation: widget window names
value xview : widget -> scrollValue -> unit 
tk invocation: widget xview scrollValue
value xview_get : widget -> float * float 
tk invocation: widget xview
value yview : widget -> scrollValue -> unit 
tk invocation: widget yview scrollValue
value yview_get : widget -> float * float 
tk invocation: widget yview
value yview_index : widget -> textIndex -> unit 
tk invocation: widget yview textIndex
value yview_index_pickplace : widget -> textIndex -> unit 
tk invocation: widget yview -pickplace textIndex
value yview_line : widget -> int -> unit 
tk invocation: widget yview int
value tag_bind: support__widget -> textTag ->
                       (modifier list * xEvent) list -> bindAction -> unit 

Previous Next Contents