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

[REBOL] Re: layout refinements

From: arolls:bigpond:au at: 30-Jul-2001 4:10

> > Can someone provide short examples of the > refinements to "layout" which are in the view > developers guide, section 3.1: > /options Specifies the VIEW options when the face is > displayed with the VIEW function.
'layout has no refinement /options. But 'view does: View/options Examples: lay: layout [box red] view lay ; no options here view/options lay 'resize ; window should be resizeable view/options lay [resize] ; same as above view/options lay [no-title] ; no title bar and no window edges view/options lay [no-title no-border] ; stop the thin, black border There is also 'all-over (undocumented in the view help): view/options lay [all-over] See the documentation for how to use this. http://www.rebol.com/how-to/feel.html#sect4.4.