home *** CD-ROM | disk | FTP | other *** search
/ Chip: 25 Years Anniversary / CHIP_25Jahre_Jubilaeum.iso / downloads / 401065 / WPO11 / Data1.cab / _77B189A35C06492393976185AE89EA32 < prev    next >
Text File  |  2003-03-07  |  20KB  |  670 lines

  1. {DatabaseQuery}
  2.  
  3. Syntax
  4.  
  5. {DatabaseQuery Type; Name; QueryString; Destination}
  6.  
  7. PerfectScript Syntax
  8.  
  9. DatabaseQuery (Type?:String; Name?:String; QueryString?:String; Destination?:String)
  10.  
  11. Description
  12.  
  13. The {DatabaseQuery} macro sends the specified SQL statement to either ODBC or BDE and places the returned data in the specified block of cells.
  14.  
  15. Parameters
  16.  
  17. Type    Type of database to query: "Paradox", "ODBC", or "BDE (Borland Database Engine)".
  18.  
  19. Name    Name of the database. If the type is Paradox, the name must be a path. If the type is ODBC, the name is a Data Source Name (DSN) from the user's ODBC configuration. If the name is BDE, the name is an alias name from the user's IDAPI/BDE configuration.
  20.  
  21. QueryString    An SQL Statement.
  22.  
  23. Destination    The destination block of cells where to send the result.
  24.  
  25. {DATE}
  26.  
  27. Description
  28.  
  29. {DATE} is equivalent to pressing Ctrl+D, which lets users enter a date or time into the active cell.
  30.  
  31. You can enter a date in a cell without using Ctrl+D. Just type a date in one of Quattro Pro's date formats--for example, 6/1/95.
  32.  
  33. Example
  34.  
  35. {DATE}8/6/90~    enters 8/6/90 in the active cell as a date.
  36.  
  37. {DATE}{?}~    pauses to let the user enter a date, then enters that date into the active cell.
  38.  
  39. {DbAlias}
  40.  
  41. Syntax
  42.  
  43. {DbAlias WORK | PRIV, Path}
  44.  
  45. PerfectScript Syntax
  46.  
  47. DbAlias (type:Enumeration {PRIV!; WORK!}; Path:String)
  48.  
  49. Description
  50.  
  51. {DbAlias} lets you specify a private directory to hold temporary files, or a working directory where external data tables are most likely to be found.
  52.  
  53. Parameters
  54.  
  55. WORK | PRIV    WORK to specify a Working directory; PRIV to specify a Private directory
  56.  
  57. Path    path for the Working directory or the Private directory
  58.  
  59. {DEFINE}
  60.  
  61. Syntax
  62.  
  63. {DEFINE Location1<:Type1>, Location2<:Type2>,...}
  64.  
  65. Description
  66.  
  67. When you pass control to a subroutine with the {Subroutine} command, you can also pass arguments for use by that subroutine. If you do, you must include a {DEFINE} command in the subroutine's first line. This command defines the data type of *each argument passed and indicates which cells to store the arguments in. If no {DEFINE} command is included, the arguments are ignored.
  68.  
  69. {DEFINE} sequentially defines the arguments passed to the subroutine. The first location and type given are assigned to the first argument passed, the second location and type to the second argument, and so on.
  70.  
  71. You must specify a location for each argument. This tells Quattro Pro where to copy them. If there are more locations given than arguments passed, or more arguments than locations, the macro ends immediately, and an error message displays.
  72.  
  73. Type is optional. It tells Quattro Pro whether the argument is a value or string. If no data type is given, the argument is assumed to be a literal string (even if it is a valid cell name, cell address, or value). If you add :string (or :s) to the location, any argument passed is stored as a label. If you add :value (or :v), Quattro Pro treats the coming argument as a number or value resulting from a numeric formula. It it is not a numeric value, Quattro Pro treats it as a string (or string value from a formula).
  74.  
  75. Example
  76.  
  77. In the following example, the \F macro passes three arguments (principal, interest, and term) to the subroutine _calc_loan, which stores the arguments in named cells and defines them as values. It then
  78.  
  79. ¿    uses the arguments to calculate the monthly payment on a loan
  80.  
  81. ¿    stores the result in a cell named amount
  82.  
  83. ¿    creates a label in a cell named payment displaying that amount as currency
  84.  
  85. ¿    returns control to the main macro
  86.  
  87. The main macro (\F) displays the result in the active cell preceded by the string "The monthly payment will be ".
  88.  
  89. \F    {_calc_loan 79500,12%,30}
  90.  
  91.  
  92.  
  93. _calc_loan    {DEFINE prin:value,int:value,term:value}
  94.  
  95.         {LET amount,@PMT(prin,int/12,term*12)}
  96.  
  97.         {CONTENTS payment,amount,9,34}{EditGoto txt_area}{RETURN}
  98.  
  99.  
  100.  
  101. prin    79500
  102.  
  103. int    0.12
  104.  
  105. term    30
  106.  
  107. amount    817.747
  108.  
  109. payment    $817.75
  110.  
  111.  
  112.  
  113. txt_area    +"The monthly payment will be "&@TRIM(payment)
  114.  
  115. Parameters
  116.  
  117. Location    Cell in which you want to store the argument being passed
  118.  
  119. Type    String or value; string (or s) stores the value or formula as a label, and value (or v) stores the actual value or value resulting from a formula (optional)
  120.  
  121. {DEL} and {DELETE}
  122.  
  123. Description
  124.  
  125. {DEL} and {DELETE} are equivalent to the Del key.
  126.  
  127. {DELETEMENU}
  128.  
  129. Syntax
  130.  
  131. {DELETEMENU MenuPath}
  132.  
  133. PerfectScript Syntax
  134.  
  135. DeleteMenu (MenuPath:String)
  136.  
  137. Description
  138.  
  139. {DELETEMENU} removes the menu specified by MenuPath from the menu system. See the description of {ADDMENU} for the syntax of MenuPath. Use {DELETEMENUITEM} to remove an individual menu item.
  140.  
  141. Example
  142.  
  143. {DELETEMENU "/File"} removes the File menu from the active menu system.
  144.  
  145. Parameters
  146.  
  147. MenuPath    Menu in the tree to delete; type a forward slash (/) followed by the menu name; for example, to delete the Edit menu, type /Edit.
  148.  
  149. Notes
  150.  
  151. ¿    You cannot delete menus between Edit and Tools on the menu bar. The area between these menu positions is reserved for context-sensitive menus that change depending on the active window. You can add menu items to menus between the Edit and Tools menus, but the new menu items will be swapped out of the menu when the context changes.
  152.  
  153. ¿    Changes made to the menu system using this command are not saved; they are lost when you exit Quattro Pro. Each time you run a macro containing {DELETEMENU}, the menu changes appear again.
  154.  
  155. ¿    To restore the original menu bar, use the macro command {SETMENUBAR} without an argument
  156.  
  157. {DELETEMENUITEM}
  158.  
  159. Syntax
  160.  
  161. {DELETEMENUITEM MenuPath}
  162.  
  163. PerfectScript Syntax
  164.  
  165. DeleteMenuItem (MenuPath:String)
  166.  
  167. Description
  168.  
  169. {DELETEMENUITEM} removes the menu item specified by MenuPath from the menu system. Use {DELETEMENU} to remove entire menus from the active menu system.
  170.  
  171. Example
  172.  
  173. {DELETEMENUITEM "/Edit/Clear"} removes the Clear command from the Edit menu.
  174.  
  175. {DELETEMENUITEM "/Edit/<-"} removes the first item on the Edit menu.
  176.  
  177. Parameters
  178.  
  179. MenuPath    Menu item in the tree to delete; enter the sequence of menu items separated by forward slashes (/); you can use <- and -> to specify an item menu at the top or bottom of a menu, respectively. For example, /File/<- specifies the first item on the File menu. You can also use numbers to identify menu items. For example, /File/0 specifies the first item on the File menu (the ID numbers start at zero).
  180.  
  181. Notes
  182.  
  183. ¿    You can delete menu items from any menu, but if you change a context-sensitive menu (all menus between Edit and Tools on the menu bar), the change applies only to the menu in the active window. For example, suppose you use a macro to change the View menu when the notebook window is active. If you then open a chart window, the chart View menu appears--without the change. If you want the change to apply to that View menu as well, you must run the macro again.
  184.  
  185. ¿    Changes made to the menu system using this command are not saved; they are lost when you exit Quattro Pro. Each time you run a macro containing {DELETEMENUITEM}, the menu changes appear again.
  186.  
  187. ¿    To restore the original menu bar, use the macro command {SETMENUBAR} without an argument.
  188.  
  189. {DELVAR}
  190.  
  191. Syntax
  192.  
  193. {DELVAR VarName1<,VarName2,...>}
  194.  
  195. PerfectScript Syntax
  196.  
  197. DelVar ([VarName1:String]; {[VarName:String]})
  198.  
  199. Description
  200.  
  201. {DELVAR} deletes unused named variables. Named variables are used to control OLE objects. OLE objects are released from control at the end of macro execution, but named variables remain until you exit Quattro Pro. You can delete the unused named variables to free an object assigned to that name, and then control the object using another macro.
  202.  
  203. Example
  204.  
  205. {DELVAR} deletes all named variables
  206.  
  207. {DELVAR calc} deletes a named variable calc
  208.  
  209. {DELVAR calc 0, calc 1, calc 3} deletes the named variables calc 0, calc 1, and calc 3.
  210.  
  211. Parameters
  212.  
  213. VarName    A named variable
  214.  
  215. {DESCR}
  216.  
  217. Syntax
  218.  
  219. {DESCR InBlock, OutBlock, Grouped, <Labels(0|1)>, <Summary(0|1)>, <Largest>, <Smallest>, <Confidence>}
  220.  
  221. PerfectScript Syntax
  222.  
  223. DESCR (InBlock:String; OutBlock:String; [Grouped:String]; [Labels?:Enumeration {Yes!; No!}]; [Summary?:Enumeration {Yes!; No!}]; [Largest:Numeric]; [Smallest:Numeric]; [Confidence:Numeric])
  224.  
  225. Description
  226.  
  227. {DESCR} returns a table of descriptive statistics that characterize a sample. {DESCR} is equivalent to the Descriptive Statistics analysis tool.
  228.  
  229. Parameters
  230.  
  231. InBlock    One or more numeric cell values representing the input cells
  232.  
  233. OutBlock    Upper-left cell of the output cells
  234.  
  235. Grouped    "C" to group results by column or "R" to group results by row; "C" is the default
  236.  
  237. Labels    1 if labels are located in the first column or row of the input cells; 0 if the input cells do not contain labels; the default is 0
  238.  
  239. Summary    1 to display summary statistics; 0 to omit summary statistics; the default is 0
  240.  
  241. Largest    A value n which, if present, makes {DESCR} report the nth largest data point; if omitted, the largest data point is not reported
  242.  
  243. Smallest    A value n which, if present, makes {DESCR} report the nth smallest data point; if omitted, the smallest data point is not reported
  244.  
  245. Confidence    Confidence level of the mean; the default is 0.95
  246.  
  247. {DialogView}
  248.  
  249. Syntax
  250.  
  251. {DialogView Window}
  252.  
  253. PerfectScript Syntax
  254.  
  255. DialogView (Window:String)
  256.  
  257. Description
  258.  
  259. {DialogView} lets you edit an existing dialog box.
  260.  
  261. Parameters
  262.  
  263. Window    Dialog window to make active
  264.  
  265. {DialogWindow}
  266.  
  267. Syntax
  268.  
  269. {DialogWindow.Property}
  270.  
  271. Description
  272.  
  273. {DialogWindow} is equivalent to right-clicking the title bar of a dialog window to set its properties.
  274.  
  275. {DialogWindow} commands affect the active dialog window. The next table lists the possible settings for Property. To display a property description with syntax, choose that property in the following list:
  276.  
  277. Dimension
  278.  
  279. Disabled
  280.  
  281. Grid_Options
  282.  
  283. Name
  284.  
  285. Position_Adjust
  286.  
  287. Title
  288.  
  289. Value
  290.  
  291. {DialogWindow.Dimension}
  292.  
  293. Syntax
  294.  
  295. {DialogWindow.Dimension<Option>}
  296.  
  297. PerfectScript Syntax
  298.  
  299. DialogWindow_Dimension_Height (Height:Numeric)
  300.  
  301. DialogWindow_Dimension_Width (Width:Numeric)
  302.  
  303. DialogWindow_Dimension_X (XPos:Numeric)
  304.  
  305. DialogWindow_Dimension_Y (YPos:Numeric)
  306.  
  307. Description
  308.  
  309. {DialogWindow.Dimension} is equivalent to the dialog window property Dimension, which lets you move and resize the active dialog window. Each argument is specified in pixels. XPos and YPos specify the distance in pixels from the left side of the Quattro Pro window and bottom of the input line, respectively.
  310.  
  311. Example
  312.  
  313. The following macro command positions the active dialog window two pixels from the left edge of the Quattro Pro window and five pixels below the input line, and sets the width to 150 pixels and the height to 250 pixels.
  314.  
  315. {DialogWindow.Dimension "2,5,150,250"}
  316.  
  317. Options
  318.  
  319. {DialogWindow.Dimension "XPos, Ypos, Width, Height"}
  320.  
  321. {DialogWindow.Dimension.Height Height}
  322.  
  323. {DialogWindow.Dimension.Width Width}
  324.  
  325. {DialogWindow.Dimension.X XPos}
  326.  
  327. {DialogWindow.Dimension.Y YPos}
  328.  
  329. {DialogWindow.Disabled}
  330.  
  331. Syntax
  332.  
  333. {DialogWindow.Disabled Yes|No}
  334.  
  335. PerfectScript Syntax
  336.  
  337. DialogWindow_Disabled (Disable?:Enumeration {Yes!; No!})
  338.  
  339. Description
  340.  
  341. {DialogWindow.Disabled} disables (Yes) or enables (No) the active dialog box or Toolbar. This command works only when you view a dialog box or toolbar; it does not work when you edit one.
  342.  
  343. {DialogWindow.Grid_Options}
  344.  
  345. Syntax
  346.  
  347. {DialogWindow.Grid_Options GridSize, ShowGrid, SnapToGrid}
  348.  
  349. PerfectScript Syntax
  350.  
  351. DialogWindow_Grid_Options (Settings:String)
  352.  
  353. Description
  354.  
  355. {DialogWindow.Grid_Options} sets the grid size of the active dialog window. Use GridSize to specify the distance between grid points in pixels; ShowGrid specifies whether the grid is visible; SnapToGrid specifies whether objects snap to the grid.
  356.  
  357. Example
  358.  
  359. The following macro sets the distance between grid points to 10, shows the grid, and enables it.
  360.  
  361. {DialogWindow.Grid_Options "10,Yes,Yes"}
  362.  
  363. {DialogWindow.Name}
  364.  
  365. Syntax
  366.  
  367. {DialogWindow.Name Name}
  368.  
  369. PerfectScript Syntax
  370.  
  371. DialogWindow_Name (Name:String)
  372.  
  373. Description
  374.  
  375. {DialogWindow.Name} sets the name of the active dialog window. This name is used by macro commands, @functions, and link commands to identify the dialog box (or Toolbar).
  376.  
  377. {DialogWindow.Position_Adjust}
  378.  
  379. Syntax
  380.  
  381. {DialogWindow.Position_Adjust Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer}
  382.  
  383. PerfectScript Syntax
  384.  
  385. DialogWindow_Position_Adjust (Settings:String)
  386.  
  387. Description
  388.  
  389. {DialogWindow.Position_Adjust} specifies how the active dialog box resizes when the Quattro Pro window is resized. The arguments are equal to options in the Position Adjust dialog box.
  390.  
  391. {DialogWindow.Title}
  392.  
  393. Syntax
  394.  
  395. {DialogWindow.Title String}
  396.  
  397. PerfectScript Syntax
  398.  
  399. DialogWindow_Title (Title:String)
  400.  
  401. Description
  402.  
  403. {DialogWindow.Title} specifies the title that appears on the dialog box when the user is viewing it (the title does not appear when editing the dialog box).
  404.  
  405. {DialogWindow.Value}
  406.  
  407. Syntax
  408.  
  409. {DialogWindow.Value String}
  410.  
  411. PerfectScript Syntax
  412.  
  413. DialogWindow_Value (String:String)
  414.  
  415. Description
  416.  
  417. {DialogWindow.Value} sets the initial settings of the dialog box (or Toolbar). You can use it with @COMMAND to find the current settings of the dialog box. String is a comma-separated list of settings. Each setting sets the initial value of one control. Control values appear in this list if their Process Value property is set to Yes. You can set the order of the settings while editing the dialog box.
  418.  
  419. Example
  420.  
  421. The following macro command sets the initial values of a dialog box with three controls. Each setting maps to one control.
  422.  
  423.     {DialogWindow.Value "25000,5,1st of month"}
  424.  
  425. {DISPATCH}
  426.  
  427. Syntax
  428.  
  429. {DISPATCH Location}
  430.  
  431. Description
  432.  
  433. {DISPATCH} is similar to {BRANCH}, except it uses Location differently:
  434.  
  435. ¿    If Location is a cell address or one named cell, {DISPATCH} branches to the address stored in that cell.
  436.  
  437. ¿    If Location is a text formula resulting in a cell or one named cell, {DISPATCH} branches to the address stored in that result address. (In Quattro Pro DOS, {DISPATCH} branches to the actual result address.)
  438.  
  439. ¿    If Location contains cells or a text formula resulting in cells, {DISPATCH} branches to the first cell of those cells.
  440.  
  441. {DISPATCH} is useful when you want to branch to one of several alternative macros, depending on circumstances. You can also set up a macro that modifies the contents of Location, depending on user input or test conditions.
  442.  
  443. Example
  444.  
  445. The macro _continue in the following example uses {DISPATCH jump_cell} to create a form letter that changes depending on the result of a credit check.
  446.  
  447. Type the line to the right of \F with no hard returns until after the first {BRANCH _continue}, then press Enter to insert the text into one cell.
  448.  
  449. credit    OK
  450.  
  451.     
  452.  
  453. \F    {EditGoto text_area}
  454.  
  455.     {IF credit="OK"}{LET jump_cell,"_ok_note"}{BRANCH _continue}
  456.  
  457.     {LET jump_cell,"_bum_note"}{BRANCH _continue}
  458.  
  459.     
  460.  
  461. _continue    {PUTCELL "Because of your current standing with P.K."}
  462.  
  463.     {DOWN}
  464.  
  465.     {PUTCELL "Finance, we have decided to"}{DOWN}
  466.  
  467.     {DISPATCH jump_cell}
  468.  
  469.     
  470.  
  471. jump_cell    _ok_note
  472.  
  473.     
  474.  
  475. _ok_note    {PUTCELL "extend your credit limit."}{DOWN 2}
  476.  
  477.     {BRANCH _finish}
  478.  
  479.     
  480.  
  481. _bum_note    {PUTCELL "CANCEL your account."}{DOWN 2}
  482.  
  483.     {BRANCH _finish}
  484.  
  485.     
  486.  
  487. _finish    {PUTCELL "Please call our office for details."}
  488.  
  489.     {DOWN 2}
  490.  
  491.     {PUTCELL "Sincerely,"}
  492.  
  493.     {DOWN 3}
  494.  
  495.     {PUTCELL "James Madison (Account Officer)"}
  496.  
  497.     {DOWN}
  498.  
  499.     
  500.  
  501. text_area    Because of your current standing with P.K.
  502.  
  503.     Finance, we have decided to
  504.  
  505.     extend your credit limit.
  506.  
  507.     
  508.  
  509.     Please call our office for details.
  510.  
  511.     
  512.  
  513.     Sincerely,
  514.  
  515.     
  516.  
  517.     James Madison (Account Officer)
  518.  
  519. Parameters
  520.  
  521. Location    A single cell containing the address or cell name of another macro
  522.  
  523. {DLL}
  524.  
  525. Syntax
  526.  
  527. {DLL <DLLName.>FunctionName, Argument1, Argument2,...}
  528.  
  529. PerfectScript Syntax
  530.  
  531. DLL (DLLName_FunctionName:String; {[Argument:String]})
  532.  
  533. Description
  534.  
  535. {DLL} runs a macro or returns a value from an add-in @function contained in a dynamic-link library file. The @function can have up to 16 arguments.
  536.  
  537. Example
  538.  
  539. This statement calls the @function AMPLITUDE, included in the DLL Math, with two selections as arguments:
  540.  
  541. {DLL Math.AMPLITUDE,A1..A10,B1..B10}
  542.  
  543. Parameters
  544.  
  545. DLLName    The name of a DLL file (if not already loaded)
  546.  
  547. FunctionName    The name of an @function contained in the DLL
  548.  
  549. Argument1,Argument2...    Arguments to the @function
  550.  
  551. {DLL.Load}
  552.  
  553. Syntax
  554.  
  555. {DLL.Load DLLName}
  556.  
  557. PerfectScript Syntax
  558.  
  559. DLL_Load (DLLName:String)
  560.  
  561. Description
  562.  
  563. {DLL.Load} loads a dynamic-link library (DLL) program. You can use {DLL.Load} to load a DLL containing add-in @functions or macros. When the DLL is loaded, you can reference add-in @functions contained in the DLL without typing the DLL name. Similarly, macros contained in the DLL become resident in memory.
  564.  
  565. You can use {DLL.Load} to define a startup macro in QPW.INI.
  566.  
  567. Example
  568.  
  569. {DLL.Load MYDLL} loads a DLL program named MYDLL
  570.  
  571. Parameters
  572.  
  573. DLLName    The name of a DLL file to load
  574.  
  575. {DODIALOG}
  576.  
  577. Syntax
  578.  
  579. {DODIALOG DialogName, OKExit?, <Arguments>, <MacUse?>}
  580.  
  581. Description
  582.  
  583. {DODIALOG} displays a dialog box for you or the macro to manipulate. MacUse? specifies how to manipulate the dialog box; if 0, the macro manipulates the dialog box; if 1, the macro pauses so the user can manipulate the dialog box.
  584.  
  585. DialogName is the name of the dialog box to display. Arguments refers to the cells containing initial settings for controls in the dialog box. Each cell in Arguments corresponds to one control in the dialog box with a Process Value property set to Yes; the order of controls in the dialog box determines which cell maps to which control (the first cell maps to the first control, the second cell maps to the second, and so on).
  586.  
  587. If a dialog box is under macro control (MacUse? set to 0), you can make it revert to user control using {PAUSEMACRO}.
  588.  
  589. Once the dialog box closes (performing its function), Quattro Pro writes the new control settings into their respective cells. OKExit? is a cell containing the result of the dialog box operation; 1 if OK was chosen, 0 if the dialog box was canceled.
  590.  
  591. Parameters
  592.  
  593. DialogName    Name of dialog box to display
  594.  
  595. OKExit?    Cell to store how the dialog box closed (1 for OK, 0 for Cancel)
  596.  
  597. Arguments    Cells to store the initial settings for controls in the dialog box and their final settings (optional)
  598.  
  599. MacUse?    1 if the user should manipulate the dialog box, 0 if the macro manipulates it (optional; 1 is the default)
  600.  
  601. {DOWN} and {D}
  602.  
  603. Syntax
  604.  
  605. {DOWN <Number>} or {D <Number>}
  606.  
  607. Description
  608.  
  609. {DOWN} and {D} are equivalent to the Down key. The optional argument Number moves the selector down the corresponding number of rows. You can also use cell references or cell names as arguments.
  610.  
  611. Example
  612.  
  613. {DOWN}{DOWN}    moves the selector down two rows.
  614.  
  615. {DOWN 4}    moves the selector down four rows.
  616.  
  617. {DOWN G13}    moves down the number of rows specified in cell G13.
  618.  
  619. {DOWN count}    moves down the number of rows specified in the first cell of the named area "count".
  620.  
  621. Parameters
  622.  
  623. Number    Any positive integer (optional)
  624.  
  625. {DraftViewGoto}
  626.  
  627. Description
  628.  
  629. Switches from either the Objects Sheet or the sheet in Page View mode to Draft View.
  630.  
  631. {DUPLICATE}
  632.  
  633. Syntax
  634.  
  635. {DUPLICATE xoffset, yoffset }
  636.  
  637. PerfectScript Syntax
  638.  
  639. Duplicate (xoffset:Numeric; yoffset:Numeric)
  640.  
  641. Description
  642.  
  643. {DUPLICATE} copies selected chart annotations or dialog box controls. If no object is selected, {DUPLICATE} does nothing.
  644.  
  645. xoffset and yoffset are measured in relative coordinates for objects in a chart window, and in pixels for dialog box objects.
  646.  
  647. Example
  648.  
  649. The following macro activates a floating chart for editing, creates a rectangle in the chart, makes a copy of the rectangle, then deactivates editing.
  650.  
  651. {GraphEdit Chart1, 1}
  652.  
  653. {CreateObject Rect,147,176,416,427}
  654.  
  655. {Duplicate 269,338}
  656.  
  657. {GraphDeactivate}
  658.  
  659. Parameters
  660.  
  661. xoffset    Offset from the left edge of UpperCell to the left edge of the floating object
  662.  
  663. yoffset    Offset from the top edge of UpperCell to the top edge of the floating object
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670.