home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource.old / 25_8.tcl < prev    next >
Text File  |  2003-04-15  |  303b  |  16 lines

  1. #
  2. # Example 25-8
  3. # Grid syntax row and column span.
  4. #
  5.  
  6. . config -bg white
  7. foreach color {888 999 aaa bbb ccc ddd fff} {
  8.     frame .$color -bg #$color -width 40 -height 40
  9. }
  10. grid .888            -        -         -sticky news
  11. grid .999            .aaa        -        -sticky news
  12. grid ^            .fff        .bbb        -sticky news
  13. grid .ccc            -        ^        -sticky news
  14.  
  15.  
  16.