home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
pc
/
exsource.old
/
34_7.tcl
< prev
next >
Wrap
Text File
|
2003-04-15
|
244b
|
17 lines
#
# Example 34-7
# Dumping the text widget.
#
proc Text_Dump {t {start 1.0} {end end}} {
foreach {key value index} [$t dump $start $end] {
if {$key == "text"} {
puts "$index \"$value\""
} else {
puts "$index $key $value"
}
}
}