Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: puzzled by draw grid size

From: greggirwin:starband at: 22-Sep-2001 14:23

Hi Maksa, If you compose your effect block, and put parens around cellsize so it gets composed, you should be good to go. tablesize: 4x6 ; columns x rows cellsize: 100x20 table: [ box linen cellsize * tablesize effect compose [ draw [ fill-pen mint box 0x0 to-pair reduce [ first cellsize * tablesize second cellsize ] ] grid (cellsize); Expecting this to draw the grid around cells ] ] view layout table --Gregg