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

  1. AbsoluteReference
  2.  
  3. Syntax
  4.  
  5.  AbsoluteReference()
  6.  
  7. Description
  8.  
  9. Lets you convert relative cell addresses to absolute addresses. Number provides control over what part of the formula converts to an absolute address.
  10.  
  11. ACTIVATE
  12.  
  13. Syntax
  14.  
  15.  Activate(WindowName As String)
  16.  
  17. Description
  18.  
  19. {ACTIVATE} makes the window specified by the string WindowName active. You can find the name of a window on its title bar.
  20.  
  21. Example
  22.  
  23. To make the named chart PROFITS (in the notebook REPORT.WB3) active, use
  24.  
  25.     {ACTIVATE "C:\SALES\REPORT.WB3:PROFITS"}
  26.  
  27. Use the same syntax for activating dialog windows. To make the notebook itself active, use
  28.  
  29.     {ACTIVATE "C:\SALES\REPORT.WB3"}
  30.  
  31. Parameters
  32.  
  33. WindowName    Name of the window to make active
  34.  
  35. ADDMENU
  36.  
  37. Syntax
  38.  
  39. AddMenu(MenuPath As String, MenuBlock As String)
  40.  
  41. Description
  42.  
  43. {ADDMENU} lets you add menus to the active menu system. (Use {ADDMENUITEM} to add individual menu items to the active menu system.) MenuPath is a string that specifies where the new menu should appear. For example, to insert a menu before the Edit menu, use /Edit; to insert a menu before the Copy command on the Edit menu, use /Edit/Copy. You can use <- and -> to place a menu at the top or before the bottom of a menu, respectively. For example, /File/<- specifies the first item on the File menu.
  44.  
  45. 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). When identifying a menu item with numbers, divider lines are considered menu items (for example, /File/5 specifies the first divider line on the File menu, not Properties).
  46.  
  47. MenuBlk includes the cells containing a menu definition. MenuBlk must include all cells in the new menu.
  48.  
  49. Tips
  50.  
  51. ¿    You can add new menus only to the menu bar on either side of the Edit and Tools menus--that is, one position to the left or right of the Edit menu and one position to the left or right of the Tools menu. The area between these menu positions is reserved for menus that change depending on the active window. Likewise, you cannot delete menus within this menu, either. 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.
  52.  
  53. ¿    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 {ADDMENU}, the menu changes appear again.
  54.  
  55. ¿    To restore the original menu bar, use the macro command {SETMENUBAR} without an argument.
  56.  
  57. Parameters
  58.  
  59. MenuPath    Location in the menu system to insert a new menu
  60.  
  61. MenuBlk    Location in the menu system to insert a new menu
  62.  
  63. ADDMENUITEM
  64.  
  65. Syntax
  66.  
  67. AddMenuItem(MenuPath As String, ItemName As String, [Link As String], [Hint As String], [HotKey As String], [DependString As String], [Checked_ As _AddMenuItem_Checked__enum])
  68.  
  69. Description
  70.  
  71. {ADDMENUITEM} is like {ADDMENU}, but inserts a single menu item before MenuPath instead of a new menu.
  72.  
  73. See the description of {ADDMENU} for the syntax of MenuPath. Name is the name of the new menu item; if it is a command, precede its underlined letter with an ampersand (&).
  74.  
  75. Link specifies the actions the menu item performs (for example, "MACRO _remove_file" runs the macro _remove_file).
  76.  
  77. Example
  78.  
  79. The following macro adds the menu item Find Object above Edit  Go To. Find Object runs a macro command called _FINDOBJ.
  80.  
  81. {ADDMENUITEM "/Edit/Go To","Find Object", "MACRO _FINDOBJ", "Finds a floating object on the notebook sheet", "Ctrl+Shift+F", "No, Yes, No, No, No, No", "No"}
  82.  
  83. Parameters
  84.  
  85. MenuPath    Location in the menu system to insert a new menu item; enter the sequence of menu items separated by forward slashes (/); you can use <- and -> to place a menu at the top or before the 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).
  86.  
  87. Name    Name of the command to add; if you want a letter of the name to appear underlined, precede it with an ampersand (&); to add a divider line, type a series of hyphens (-).
  88.  
  89. Link    Action to perform when the command is chosen (optional); this argument can specify a link command or a macro command to run when the menu item is chosen; click here for details.
  90.  
  91. Hint    Help text to display in a pop-up window when the command is highlighted (optional)
  92.  
  93. HotKey    Shortcut key that chooses the command (optional); separate key combinations with a plus sign (+), for example, Alt+F4.
  94.  
  95. DependString    Areas in which the command is available (optional); enter Yes or No for each area, separated by commas, in the following order: desktop, notebook, chart Window, dialog window, input line, Objects sheet. Example: "No, No, Yes, No, No, No" makes the menu item available only when the chart window is active.
  96.  
  97. Checked    Type "Yes" if the command should have a checkmark display by it (optional)
  98.  
  99. Tips
  100.  
  101. ¿    You can add menu items to 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.
  102.  
  103. ¿    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 {ADDMENUITEM}, the menu changes appear again.
  104.  
  105. ¿    To restore the original menu bar, use the macro command {SETMENUBAR} without an argument.
  106.  
  107. ADDSERIES
  108.  
  109. Syntax
  110.  
  111.  AddSeries(Block As String, Name As String)
  112.  
  113. Description
  114.  
  115. {ADDSERIES} adds a data series to a floating chart. Use {ADDSERIES} as an equivalent to dragging cells onto a chart on a notebook sheet to add a series.
  116.  
  117. Example
  118.  
  119. The following macro adds the series contained in the cells A:E3..E13 to the floating chart named BUDGET:
  120.  
  121. {ADDSERIES A:E3..E13, BUDGET}
  122.  
  123. Parameters
  124.  
  125. Block    Cells containing a data series
  126.  
  127. Name    Name of the chart to which you want to add a series
  128.  
  129. ADDSUBMENUITEM
  130.  
  131. Syntax
  132.  
  133. AddSubMenuItem(MenuPath As String, ItemName As String, [Link As String], [Hint As String], [HotKey As String], [DependString As String], [Checked_ As _AddSubMenuItem_Checked__enum])
  134.  
  135. Description
  136.  
  137. {ADDSUBMENUITEM} is like {ADDMENUITEM}, but converts the command indicated by MenuPath into a submenu and adds the new command to the submenu.
  138.  
  139. Link specifies the actions the submenu item performs (for example, "MACRO _remove_file" runs the macro _remove_file).
  140.  
  141. Parameters
  142.  
  143. MenuPath    Location in the menu system to insert a new menu item; enter the sequence of menu items separated by forward slashes (/); you can use <- and -> to place a menu at the top or before the 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).
  144.  
  145. Name    Name of the command to add; if you want a letter of the name to appear underlined, precede it with an ampersand (&)
  146.  
  147. Link    Action to perform when the command is chosen (optional); this argument can specify a link command or a macro command to run when the menu item is chosen; click here for details.
  148.  
  149. Hint    Help text to display on the status line when the command is highlighted (optional)
  150.  
  151. HotKey    Shortcut key that chooses the command (optional); separate key combinations with a plus sign (+), for example, Alt+F4.
  152.  
  153. DependString    Areas in which the command is available (optional); enter Yes or No for each area, separated by commas, in the following order: desktop, notebook, chart window, dialog window, input line, Objects sheet. Example: "No, No, Yes, No, No, No" makes the menu item available only when the chart window is active.
  154.  
  155. Checked    Type "Yes" if the command should have a checkmark display by it (optional)
  156.  
  157. Tips
  158.  
  159. ¿    You can add menu items to 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.
  160.  
  161. ¿    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 {ADDSUBMENUITEM}, the menu changes appear again.
  162.  
  163. Alert
  164.  
  165. Syntax
  166.  
  167. Alert(Title_ As String, Message_ As String, OKExit_ As String, [Type_ As Integer], [Icon_ As Integer], [DefaultBtn_ As Integer])
  168.  
  169. Description
  170.  
  171. Message displays a dialog box "message" for the user of the macro to manipulate. You set the title and message text of the dialog via the Title and Message arguments.
  172.  
  173. OKExit stores the result of the dialog box, so the macro can determine which button was pushed to close it.
  174.  
  175. Type specifies what type of message box will appear. It can be a message box with just an OK button, or one with both an OK and Cancel, etc.
  176.  
  177. Icon specifies which graphic to use on the above dialog. Zero represents the Error icon you would see on a regular error message under Windows. One is for the Question Mark icon, etc.
  178.  
  179. DefaultBtn determines which button (if there are multiple) is the "default" button. If this argument is a number greater than the number of buttons on the dialog, then the first button will be default.
  180.  
  181. Parameters
  182.  
  183. Title    Title of resultant dialog.
  184.  
  185. Message    Message text of resultant dialog.
  186.  
  187. OKExit?    Cell to store how the dialog box closed (1 for OK, 2 for Cancel, 3 for Abort, 4 for Retry, 5 for Ignore, 6 for Yes, 7 for No).
  188.  
  189. Type    0 for dialog with just an OK button, 1 for OK/Cancel, 2 for Abort/Retry/Ignore,3 for Yes/No/Cancel, 4 for Yes/No, and 5 for Retry/Cancel (optional; 0 is default).
  190.  
  191. Icon    0 for icon of type Error, 1 for Question, 2 for Warning, 3 for Info (optional; 0 is the default).
  192.  
  193. DefaultBtn    0 for first button being default, 1 for second, etc... (optional; 0 is the default).
  194.  
  195.  
  196.  
  197. AnalysisExpert
  198.  
  199. Syntax
  200.  
  201. AnalysisExpert()
  202.  
  203. Description
  204.  
  205. {AnalysisExpert} performs a number of advanced statistical, numerical, and financial analysis tasks. The macro has no arguments. {AnalysisExpert} displays the first Analysis Tools Expert dialog box.
  206.  
  207. Before you use an analysis tool, make sure the input cells you are analyzing are arranged properly and contain the right kind of data (that is, numeric data, not strings). The analysis tools have varying restrictions on the contents of the input cells and size of the cell area.
  208.  
  209. {ANOVA1}
  210.  
  211. Syntax
  212.  
  213. ANOVA1(InBlock As String, OutBlock As String, [Grouped As String], [Labels_ As _ANOVA1_Labels__enum], [Alpha As Double])
  214.  
  215. Description
  216.  
  217. {ANOVA1} performs a one-way analysis of variance. Use {ANOVA1} to test whether two or more samples come from the same population. {ANOVA1} is equivalent to the Anova: One-Way analysis tool.
  218.  
  219. Parameters
  220.  
  221. InBlock    Input cells containing two or more sets of numeric data arranged in columns or rows
  222.  
  223. OutBlock    Upper left cell of the output cells
  224.  
  225. Grouped    "C" to group results by column or "R" to group results by row; the default is "C"
  226.  
  227. 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
  228.  
  229. Alpha    The significance level at which to evaluate values for the F-statistic; the default is 0.05
  230.  
  231. ANOVA2
  232.  
  233. Syntax
  234.  
  235. ANOVA2(InBlock As String, OutBlock As String, SampleRows As Integer, [Alpha As Double])
  236.  
  237. Description
  238.  
  239. {ANOVA2} performs a two-way analysis of variance, with more than one sample for each group of data. {ANOVA2} is equivalent to the Anova: Two-Way with Replication analysis tool.
  240.  
  241. Parameters
  242.  
  243. InBlock    Input cells containing two or more sets of numeric data arranged in columns; the first row must contain labels for each group; the first column must contain row labels indicating the beginning of each sample
  244.  
  245. OutBlock    Upper-left cell of the output cells
  246.  
  247. SampleRows    The number of rows in each sample
  248.  
  249. Alpha    The significance level at which to evaluate values for the F-statistic; the default is 0.05
  250.  
  251. {ANOVA3}
  252.  
  253. Syntax
  254.  
  255. ANOVA3(InBlock As String, OutBlock As String, [Labels_ As _ANOVA3_Labels__enum], [Alpha As Double])
  256.  
  257. Description
  258.  
  259. {ANOVA3} performs a two-way analysis of variance, with only one sample for each group of data. {ANOVA3} is equivalent to the Anova: Two-Way Without Replication analysis tool.
  260.  
  261. Parameters
  262.  
  263. InBlock    Input cells containing two or more sets of numeric data arranged in columns or rows
  264.  
  265. OutBlock    Upper-left cell of the output cells
  266.  
  267. 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
  268.  
  269. Alpha    The significance level at which to evaluate the F-statistic; the default is 0.05
  270.  
  271. ANSIREAD
  272.  
  273. Syntax
  274.  
  275. {ANSIREAD #Bytes, Location}
  276.  
  277. Description
  278.  
  279. {ANSIREAD} reads #Bytes bytes of characters from a file previously opened using OPEN starting at the current position of the file pointer), and stores them as a label in Location, like {READ} but without any character mapping. This macro is provided for international users.
  280.  
  281. Parameters
  282.  
  283. #Bytes    Number of bytes of characters to read from a file
  284.  
  285. Location    Cell in which to store the characters read
  286.  
  287. Note
  288.  
  289. ¿ This command is obsolete.
  290. ¿ 
  291. {ANSIREADLN}
  292.  
  293. Syntax
  294.  
  295.  {ANSIREADLN Location}
  296.  
  297. Description
  298.  
  299.  {ANSIREADLN} is like {ANSIREAD}, but instead of using a number of bytes to determine the amount of text to read, {ANSIREADLN} reads forward from the current file pointer location up to and including the carriage-return/linefeed at the end of the line, like {READLN} but without any character mapping. This macro is provided for international users.
  300.  
  301. Parameters
  302.  
  303.  Location    Cell in which to store the characters read
  304.  
  305. {ANSIWRITE}
  306.  
  307. Syntax
  308.  
  309.  {ANSIWRITE String,<String2>,<String3,...>}
  310.  
  311. Description
  312.  
  313.  {ANSIWRITE} copies String(s) to a file opened with the OPEN command, starting at the location of the file pointer, like {WRITE} but without any character mapping. This macro is provided for international users.
  314.  
  315. Parameters
  316.  
  317.  String    String of characters to be written into the open file
  318.  
  319. {ANSIWRITELN}
  320.  
  321. Syntax
  322.  
  323.  {ANSIWRITELN String,<String2>,<String3,...>}
  324.  
  325. Description
  326.  
  327.  {ANSIWRITELN} copies String(s) to a file opened with OPEN starting at the location of the file pointer, and ends the string(s) with the carriage-return and linefeed characters, like {WRITELN} but without any character mapping. This macro is provided for international users.
  328.  
  329. Parameters
  330.  
  331.  String    String of characters to be written into the open file as a single line
  332.  
  333. Note
  334.  
  335. ¿ This command is obsolete.
  336. ¿ 
  337. {Application}
  338.  
  339. Syntax
  340.  
  341.  {Application.Property}
  342.  
  343. Description
  344.  
  345.  {Application} changes application properties such as compatibility options, display options, international options, macro and menu options, file options, and general options. Some settings appear only in Developer mode.
  346.  
  347.  You can use {Application?} or {Application!} to display the Application dialog box. {Application?} lets the user manipulate the dialog box, whereas {Application!} relies on the macro to manipulate it.
  348.  
  349. {Application.Compatibility.Option}
  350.  
  351. Syntax
  352.  
  353.  {Appliction.Compatibility<.Option>}
  354.  
  355. PerfectScript Syntax
  356.  
  357.  Application_Compatibility(<.Option>)
  358.  
  359. Description
  360.  
  361.  Equivalent to Tools  Settings  Compatibility
  362.  
  363. Parameters
  364.  
  365.  AlternateMenuBar [String]    Lets you specify which menu to use.
  366.  
  367.  "Quattro Pro 8/9"
  368.  
  369.  "Quattro Pro 7"
  370.  
  371.  "Excel 97"
  372.  
  373.  "Custom"
  374.  
  375.  AutoArrayWrap [Boolean]    Lets you specify whether CTRL+SHIFT+ENTER generates an @ARRAY function, or whether Quattro Pro automatically determines whether one is needed.
  376.  
  377.  0 CTRL+SHIFT+ENTER generates an @ARRAY function
  378.  
  379.  1 Quattro Pro automatically determines whether one is needed
  380.  
  381.  CompatibilityMode [String]    Lets you specify which compatibility default is used.
  382.  
  383.  "Quattro Pro 9"
  384.  
  385.  "Quattro Pro 8"
  386.  
  387.  "Excel 97"
  388.  
  389.  "Custom"
  390.  
  391.  Def_Columns_Limit [Numeric]    Lets you specify the maximum number of columns a notebook can contain.
  392.  
  393.  Def_Rows_Limit [Numeric]    Lets you specify the maximum number of rows a notebook can contain.
  394.  
  395.  Def_Sheets_Limit [Numeric]    Lets you specify the maximum number of sheets a notebook can contain.
  396.  
  397.  File_Extension [String]    Lets you specify the default file format.
  398.  
  399.  Min_Number_Sheets [Numeric]    Lets you specify the minimum number of sheets a notebook can contain.
  400.  
  401.  Range_Syntax [String]    Equivalent to Tools  Settings  Compatibility  3D Syntax.
  402.  
  403.  Sheet_Tab_Label [Boolean]    Equivalent to Tools  Settings  Sheet Tab Display  Display as Numbers. This option is obsolete.
  404.  
  405. {Application.Country_Settings}
  406.  
  407. Syntax
  408.  
  409.  {Application.Country_Settings "Symbol, Prefix|Suffix, Country"}
  410.  
  411. PerfectScript Syntax
  412.  
  413.  Application_Country_Settings (Settings:String)
  414.  
  415. Description
  416.  
  417.  {Application.Country_Settings} sets the type of currency symbol and its placement before or after values for a particular country.
  418.  
  419.  This macro replaces previous Quattro Pro macros, {Application.International.Currency_Symbol} and {Application.International.Placement}.
  420.  
  421. Example
  422.  
  423.  The following macro sets the currency symbol to $ and places the symbol before values for United States currency values.
  424.  
  425.  {Application.Country_Settings "$,Prefix,United States"}
  426.  
  427. {Application.Current_File}
  428.  
  429. Description
  430.  
  431.  {Application.Current_File} returns the name of the active notebook. This command equivalent is used only with @COMMAND.
  432.  
  433. {Application.Display}
  434.  
  435. Syntax
  436.  
  437.  {Application.Display<Option>}
  438.  
  439. PerfectScript Syntax
  440.  
  441.  Application_Display (Settings:String)
  442.  
  443. Description
  444.  
  445.  {Application.Display} lets you specify cell syntax and display parts of the Quattro Pro user interface. The arguments of {Application.Display} (which sets all options of the Display property in one command) use the same syntax as those in the {Application.Display.Option} commands.
  446.  
  447. Example
  448.  
  449.  The following macro command hides the time, hides the standard Toolbar, displays the input line and status line, sets the cell syntax to standard, hides the Property Bar, and displays the scroll indicators and QuickTips.
  450.  
  451.  {Application.Display "None,No,Yes,Yes,A..B:A1..B2,No,Yes,Yes"}
  452.  
  453. Options
  454.  
  455.  {Application.Display "Toolbar, InputLine, Status, RangeSyntax, PropBand, ScrollIndicator, Hint, DefaultView, SheetTabLabel, MinNumSheets, ShowGroupboxAsLine, ShowPreselection, ShowHistoryList"}    Lets you specify whether to show or hide portions of the Quattro Pro window, and switches between 3-D syntax schemes.
  456.  
  457.  {Application.Display.Clock_Display Yes|No}    Lets you specify whether to show the Clock Display. This option is obsolete.
  458.  
  459.  0 Do not show the Clock Display.
  460.  
  461.  1 Show the Clock Display.
  462.  
  463.  {Application.Display.CommentMarkers Yes|No}    Lets you specify whether to show the Comment Markers
  464.  
  465.  0 Do not show the Comment Markers.
  466.  
  467.  1 Show the Comment Markers.
  468.  
  469.  {Application.Display.Default_View Draft|Page}    Lest you specify whether new Notebooks come up in Draft view or Page Preview view. This option is obsolete.
  470.  
  471.  {Application.Display.Default_Zoom Yes|No}    Lets you specify whether to enable the Default Zoom. This option is obsolete.
  472.  
  473.  0 Do not enable the Default Zoom.
  474.  
  475.  1 Enable the Default Zoom.
  476.  
  477.  {Application.Display.FormulaMarkers Yes|No}    Lets you specify whether to display the Formula Markers.
  478.  
  479.  0 Do not display the Formula Markers.
  480.  
  481.  1 Display the Formula Markers.
  482.  
  483.  {Application.Display.History_List Yes|No}    Lets you specify whether to display the File History List off the File menu.
  484.  
  485.  0 Do not display the File History List.
  486.  
  487.  1 Display the File History List.
  488.  
  489.  {Application.Display.Min_Number_Sheets N}    Lets you specify the default number of sheets on new Notebooks. This option is obsolete.
  490.  
  491.  {Application.Display.Range_Syntax "A..B:A1..B2"|"A:A1..B:B2"}    Lets you switch between 3-D syntax schemes. This option is obsolete.
  492.  
  493.  {Application.Display.RealTime_Prev Yes|No}    Lets you specify whether to enable the RealTime Preview.
  494.  
  495.  0 Do not enable the RealTime Preview.
  496.  
  497.  1 Enable the RealTime Preview.
  498.  
  499.  {Application.Display.Sheet_Tab_Label Letters|Numbers}    Allows you to choose whether your default sheet tab names are letters (A..IV) or numeric (Sheet1..Sheet256). This option is obsolete.
  500.  
  501.  {Application.Display.Sheet_Tab_Label Letters|Numbers}    Toggles dialog Group Boxes between being 'boxes' or just a line above the group. This option is obsolete.
  502.  
  503.  {Application.Display.Shortcut_Keys Yes|No}    Lets you specify whether to display shortcut keys.
  504.  
  505.  0 Display shortcut keys.
  506.  
  507.  1 Do not display shortcut keys.
  508.  
  509.  {Application.Display.Show_GroupBox_As_Line Yes|No}    Toggles dialog Group Boxes between being a 'box', or just a line above the group. This option is obsolete.
  510.  
  511.  {Application.Display.Show_InputLine Yes|No}    Lets you specify whether to show the Input Line.
  512.  
  513.  0 Do not show the Input Line
  514.  
  515.  1 Show the Input Line.
  516.  
  517.  {Application.Display.Show_PreSelection Yes|No}    Toggles Windows buttons and other controls between being 3-D and flat. This option is obsolete.
  518.  
  519.  {Application.Display.Show_Property_Band Yes|No}    Lets you specify whether to show the Property Bar. This option is obsolete.
  520.  
  521.  0 Do not show the Property Bar
  522.  
  523.  1 Show the Property Bar
  524.  
  525.  {Application.Display.Show_Scroll_Indicator Yes|No}    Lets you specify whether to show the Scroll Indicators.
  526.  
  527.  0 Do not show the Scroll Indicators.
  528.  
  529.  1 Show the Scroll Indicators.
  530.  
  531.  {Application.Display.Show_StatusLine Yes|No}    Lets you specify whether to show the the Application Bar. This option is obsolete.
  532.  
  533.  0 Do not show the Application Bar.
  534.  
  535.  1 Show the Application Bar.
  536.  
  537.  {Application.Display.Show_Tool_Hint Yes|No}    Lets you specify whether to show QuickTips.
  538.  
  539.  0 Do not show QuickTips
  540.  
  541.  1 Show QuickTips
  542.  
  543.  {Application.Display.Show_Toolbar Yes|No}    Lets you specify whether to show the toolbar. This option is obsolete.
  544.  
  545.  0 Do not show the toolbar
  546.  
  547.  1 Show the toolbar
  548.  
  549. {Application.Enable_Inspection}
  550.  
  551. Syntax
  552.  
  553.  {Application.Enable_Inspection Yes|No}
  554.  
  555. PerfectScript Syntax
  556.  
  557.  Application_Enable_Inspection (Enable?:Enumeration {Yes!; No!})
  558.  
  559. Description
  560.  
  561.  {Application.Enable_Inspection} enables (Yes) or disables (No) Object Inspector menus. It is available only in Developer mode.
  562.  
  563. {Application.File_Options}
  564.  
  565. Syntax
  566.  
  567.  {Application.File_Options<Option>}
  568.  
  569. PerfectScript Syntax
  570.  
  571.  Application_File_Options (Settings:String)
  572.  
  573. Description
  574.  
  575.  {Application.File_Options} includes information that is used every time you start Quattro Pro. It lets you specify the startup folder, autoload file, default file extension, and other options. The arguments of {Application.File_Options} (which sets all options of the File Options property in one command) use the same syntax as those in the {Application.File_Options.Option} commands.
  576.  
  577.  ¿    {Application.File_Options.AutoBack_Enabled} and {Application.File_Options.AutoBack_Time} enable the creation of temporary backup files at a specified time interval.
  578.  
  579.  ¿    {Application.File_Options.Autoload_File} sets the file to be loaded every time Quattro Pro is started.
  580.  
  581.  ¿    {Application.File_Options.File_Extension} sets the default file extension to be used with file-handling commands.
  582.  
  583.  ¿    {Application.File_Options.Full_Path_Titles} shows the full path of notebook files in the title bar of the notebook window.
  584.  
  585.  ¿    {Application.File_Options.QuickTemplates} enables or disables the use of notebook templates when you create a new notebook.
  586.  
  587.  ¿    {Application.File_Options.Startup_Directory} sets the directory initially displayed by file-handling commands.
  588.  
  589.  ¿    {Application.File_Options.TempDir} specifies the directory containing QuickTemplate files.
  590.  
  591. Example
  592.  
  593.  The following macro command sets the startup directory to C:\COREL\SUITE8, sets the autoload file to QUATTRO.WB3, sets the file extension to .WB3, enables autobackup at 15-minute intervals, enables the display of full path titles, enables QuickTemplates, sets the QuickTemplate directory, and sets the custom @function directory.
  594.  
  595.  {Application.File_Options "C:\COREL\SUITE8\, QUATTRO.WB3, WB3, Yes, 15, Yes,, Yes,
  596.  
  597.          C:\COREL\SUITE8\TEMPLATE, C:\COREL\SUITE8"}
  598.  
  599. Options
  600.  
  601.  {Application.File_Options StartupDir, AutoFile, FileExt, AutoBackup?(Yes|No),AutoBackupTime, FullPathTitles?(Yes|No), AutoBack,QuickTemplates?(Yes|No), QuickTemplateDir, URLUpdateTime, UpdateURL}    Open File Options dialog box.
  602.  
  603.  {Application.File_Options.AutoBack_Enabled Yes|No}    Create timed backup files at specified intervals.
  604.  
  605.  {Application.File_Options.AutoBack_Time Integer}    Set the amount of time between automatic backups.
  606.  
  607.  {Application.File_Options.Autoload_File String}    Open a file automatically when you start Quattro Pro.
  608.  
  609.  {Application.File_Options.AutoRefreshTime N}    Specify how many minutes should pass before URLs refresh. This option is obsolete.
  610.  
  611.  {Application.File_Options.DoRefresh Yes|No}    Refresh URLs at specified time intervals. This option is obsolete.
  612.  
  613.  {Application.File_Options.File_Extension String}    Specify a default file extension. This option is obsolete.
  614.  
  615.  {Application.File_Options.Full_Path_Titles Yes|No}    Show full folder paths in title bars.
  616.  
  617.  {Application.File_Options.QuickTemplates Yes|No}    Enable QuickTemplates. This option is obsolete.
  618.  
  619.  {Application.File_Options.Startup_Directory String}    Specify a default folder.
  620.  
  621.  {Application.File_Options.TempDir Path}    Specify a folder for QuickTemplates. This option is obsolete.
  622.  
  623.  {Application.File_Options.WPDialogs Yes|No}    Use enhanced file dialogs.
  624.  
  625. {Application.General}
  626.  
  627. Syntax
  628.  
  629.  {Application.General<Option>}
  630.  
  631. PerfectScript Syntax
  632.  
  633.  Application_General (Settings:String)
  634.  
  635. Description
  636.  
  637.  {Application.General} lets you:
  638.  
  639.  ¿    enable the Edit  Undo command
  640.  
  641.  ¿    make a variety of keys work in the same way as in Quattro Pro for DOS
  642.  
  643.  ¿    set the behavior of the cell selector when you press Enter
  644.  
  645.  ¿    specify how long to wait before changing from cell selection to Drag-and-Drop mode
  646.  
  647.  ¿    specify whether to use formula entry from Quattro Pro version 5
  648.  
  649. Example
  650.  
  651.  The following macro command enables Undo, makes the cell selector move down when you enter data, sets the cell drag and drop delay time to 400 milliseconds, and uses Quattro Pro formula entry.
  652.  
  653.  {Application.General "Yes,No,Yes,Yes,400,No,No,No,No"}
  654.  
  655. Options
  656.  
  657.  {Application.General "UseUndo?(Yes|No), CompatibleKeys?(Yes|No), MoveCellOnEnter?(Yes|No),, DelayTime, Compatible_Formula_Entry?(Yes|No), Fit-As-You-Go?(Yes|No), Calc-As-You-Go?(Yes|No),QuickType?(Yes|No), CellReferenceChecker?(Yes|No)}    Opens the General Options tab.
  658.  
  659.  {Application.General.Calc-As-You-Go Yes|No}    Turns on/off Calc As You Go.
  660.  
  661.  {Application.General.Cell_Reference_Checker Yes|No}    Turns on/off the Cell Reference Checker.
  662.  
  663.  {Application.General.Compatible_Formula_Entry Yes|No}    Sets how you want to enter formulas.
  664.  
  665.  {Application.General.Compatible_Keys Yes|No}    Makes a variety of keys work the same way as in Quattro Pro for DOS.
  666.  
  667.  {Application.General.Delay_Time Integer}    Specifies how long to wait before changing from cell selection to Drag and Drop mode.
  668.  
  669.  {Application.General.Direction Down|Up|Left|Right}    Equivalent to Tools  Settings  General  Direction.
  670.  
  671.  {Application.General.Fit-As-You-Go Yes|No}    Turns on/off Fit-As-You-Go, which automatically sizes columns on data entry.
  672.  
  673.  {Application.General.MoveCellOnEnterKey Yes|No}    Makes the selector move down a cell every time you enter data.
  674.  
  675.  {Application.General.QuickType Yes|No}    Turns on/off QuickType, which as you type a label or function, finds the closest match.
  676.  
  677.  {Application.General.Undo Yes|No}    Enables the Undo feature.
  678.  
  679.  
  680.  
  681. {Application.International}
  682.  
  683. Syntax
  684.  
  685.  {Application.International<Option>}
  686.  
  687. PerfectScript Syntax
  688.  
  689.  Application_International (Settings:String)
  690.  
  691. Description
  692.  
  693.  {Application.International} lets you specify the punctuation, sort order, and numeric formats used by Quattro Pro. The arguments of {Application.International} (which sets all options of the International property in one command) use the same syntax as those in the {Application.International.Option} commands. For example, the Negative argument can be Signed or Parens, the same settings that {Application.International.Negative} accepts.
  694.  
  695.  To set the currency symbol and its placement either before or after values, use the {Application.Country_Settings} macro.
  696.  
  697. Example
  698.  
  699.  The following macro command specifies that the Quattro Pro currency format is used with parentheses to indicate negative values, sets the punctuation, sets the date and time formats to Windows defaults, sets the sort order to English, disables LICS conversion, and sets the country used for currency to United States. The entire string must be enclosed within a set of quotes. (Enter all of the example into one cell.)
  700.  
  701.      {Application.International ", Quattro Pro,, Parens,""1,234.56 (a1,a2)"", Windows Default, Windows Default, Quattro Pro, English (American), No, United States"}
  702.  
  703. Options
  704.  
  705.  {Application.International ", Currency, , Negative, Punctuation, DateFmt, TimeFmt, Language, Conversion, Country"}    Opens the International tab
  706.  
  707.  {Application.International.Currency "Windows Default"|"Quattro Pro"}    Sets the default currency symbol
  708.  
  709.  {Application.International.Date_Format String}    Determines the international formats given as options for date display
  710.  
  711.  {Application.International.Language String}    Equivalent to Tools  Settings  International  LanguageMode
  712.  
  713.  {Application.International.Language String}    Selects an interface language
  714.  
  715.  {Application.International.LanguageMode SuiteDefault| Quattro Pro}    Equivalent to Tools  Settings  International  Language.
  716.  
  717.  {Application.International.LICS_Conversion Yes|No}    Converts Lotus International Character Set characters into standard ANSI characters
  718.  
  719.  {Application.International.Negative Signed|Parens}    Controls whether negative values are preceeded by a minus sign or surrounded by parentheses. This option is obsolete.
  720.  
  721.  {Application.International.Punctuation "1 234,56 (a1.a2)" | "1 234,56 (a1;a2)" | "1 234.56 (a1,a2)" | "1 234.56 (a1;a2)" | "1,234.56 (a1,a2)"| "1,234.56 (a1;a2)" | "1.234,56 (a1;a2)" | "1.234,56 (a1.a2)" | "Windows Default"}    Controls the characters used as thousands, decimal, and argument separators
  722.  
  723.  {Application.International.Time_Format String}    Determines the international formats given as options for time display
  724.  
  725.  
  726.  
  727. {Application.Macro}
  728.  
  729. Syntax
  730.  
  731.  {Application.Macro<Option>}
  732.  
  733. PerfectScript Syntax
  734.  
  735.  Application_Macro (Settings:String)
  736.  
  737. Description
  738.  
  739.  {Application.Macro.Option} lets you control screen updates, display alternative menu systems, and run startup macros when you open a notebook. The arguments of {Application.Macro} (which sets all options of the Macro property in one command) use the same syntax as those in the {Application.Macro.Option} commands.
  740.  
  741. Example
  742.  
  743.  The following macro command specifies that windows should not display when a macro runs, makes the slash key display the Quattro Pro for DOS menu system, and sets the startup macro to BUDGET (Quattro Pro will run a macro named BUDGET whenever a notebook is opened containing a macro by that name).
  744.  
  745.      {Application.Macro "Window,,Quattro Pro - DOS,BUDGET"}
  746.  
  747. Options
  748.  
  749.  {Application.Macro "MacSuppress,, SlashKey, StartupMacro"}    Opens the Macro tab
  750.  
  751.  {Application.Macro.Macro_Redraw Both|None|Panel|Window}    Suppresses redrawing of the window, panels, or both
  752.  
  753.  {Application.Macro.Slash_Key MenuName}    Controls which menu system displays when you press the slash key. This option is obsolete.
  754.  
  755.  {Application.Macro.Startup_Macro String}    Sets the macro to run every time you open a notebook containing a macro with this name
  756.  
  757.  
  758.  
  759. {Application.Title}
  760.  
  761. Syntax
  762.  
  763.  {Application.Title Title}
  764.  
  765. PerfectScript Syntax
  766.  
  767.  Application_Title (Title:String)
  768.  
  769. Description
  770.  
  771.  {Application.Title Title} changes the title displayed on Quattro Pro's title bar. This property is available only after starting Quattro Pro in developer mode (with /D parameter).
  772.  
  773. {ASSIGN}
  774.  
  775. Syntax
  776.  
  777.  {ASSIGN VarExpr, ValExpr}
  778.  
  779. Description
  780.  
  781.  The {ASSIGN} macro command is equivalent to the assignment statement variable=value in a programming language.
  782.  
  783. Example
  784.  
  785.  {ASSIGN calc, CreateObject("DispCalc.Application")} creates an object of the DispCalc application and assigns it to a named variable calc.
  786.  
  787.  {ASSIGN calc.accum, 0} clears the accumulated value of DispCalc.
  788.  
  789.  {ASSIGN calc.accum, @SUM(A1..A10)} assigns the sum of A1..A10 to the accumulated value of DispCalc.
  790.  
  791.  For more details on using {ASSIGN} and other OLE automation macro commands, see Using OLE Automation Features.
  792.  
  793. Parameters
  794.  
  795.  VarExpr    A variable expression
  796.  
  797.  ValExpr    A value expression
  798.  
  799. Note
  800.  
  801. ¿ This command is obsolete.
  802. ¿ 
  803. {Audit.Remove_All_Arrows}
  804.  
  805. Description
  806.  
  807.  Removes all precedent and dependent arrows.
  808.  
  809. {Audit.Trace_Dependents}
  810.  
  811. Description
  812.  
  813.  Traces dependents of current formula.
  814.  
  815. {Audit.Trace_Precedents}
  816.  
  817. Description
  818.  
  819.  Traces precedents to current formula.
  820.  
  821. Tip
  822.  
  823.   Equivalent to Tools  Auditing  Trace Precedents.
  824.   
  825.  
  826.  
  827.  
  828.  
  829.  
  830.