Mnemonics
'FRAME' Define / Draw a Frame
GUI Display
 
Format 'FRAME'(x,y,x,y,style,[,title$])
 
Where:
 
title$ Frame title. Optional. String expression.
style Determines the style level and bevel sizes in creating the frame. Numeric expression:
  >0 'FRAME' is elevated button with bevel width=style value
  <0 'FRAME' is inset with bevel width=style value
  =0 'FRAME' appears etched or flat (depends on '2D' , '3D' , or '4D'.
x,y Placement coordinates, top left and bottom right, in graphical units. Numeric expression.
 
Description Use 'FRAME' to draw (print) a frame on the screen. Use graphical units or @X(col)
and @Y(line) functions for beginning and ending the frame.
 
Example 0010 PRINT 'FRAME'(100,100,450,450,10,"Hello There")