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

  1. {FileClose} and {FileCloseAll}
  2.  
  3. Syntax
  4.  
  5. FileClose([DoSave_ As _FileClose_DoSave__enum])
  6.  
  7. FileCloseAll([DoSave_ As _FileCloseAll_DoSave__enum])
  8.  
  9. PerfectScript Syntax
  10.  
  11. FileClose ([DoSave?:Enumeration {Yes!; No!}])
  12.  
  13. FileCloseAll ([DoSave?:Enumeration {Yes!; No!}])
  14.  
  15. Description
  16.  
  17. {FileClose} closes all views of the active notebook; {FileCloseAll} closes all open notebooks. The optional argument DoSave? indicates whether to display a save prompt before closing files with changes. Use 1, the default, to prompt for changes; 0 suppresses save prompts.
  18.  
  19. Options
  20.  
  21. {FileClose <DoSave? (0|1)>}    Closes all views of the active notebook
  22.  
  23. {FileCloseAll <DoSave? (0|1)>}    Closes all open notebooks
  24.  
  25. {FileCombine}
  26.  
  27. Syntax
  28.  
  29.  FileCombine(FileName As String, Blocks As String, Operation As _FileCombine_Operation_enum)
  30.  
  31. PerfectScript Syntax
  32.  
  33. FileCombine (FileName:String; [Blocks:String]; Operation:Enumeration {Copy!; Add!; Subtract!; Multiply!; Divide!})
  34.  
  35. Description
  36.  
  37. {FileCombine} lets you copy all or part of a notebook into any area of the active notebook. If you use the "Copy" option, it copies all or part of a notebook into the active notebook (starting at the selected cell). Omit Blocks to combine an entire file. Use "Add," "Subtract," "Multiply," or "Divide" to perform mathematical operations; the incoming data operates on existing data.
  38.  
  39. You can use {FileCombine?} or {FileCombine!} to display the Combine Files dialog box. {FileCombine?} lets you manipulate the dialog box, whereas {FileCombine!} relies on the macro to manipulate it.
  40.  
  41. Parameters
  42.  
  43. Filename    Name of the file to combine
  44.  
  45. Blocks    Selection or selections within Filename to combine (optional)
  46.  
  47. {FileExit}
  48.  
  49. Syntax
  50.  
  51. FileExit([DoSave_ As _FileExit_DoSave__enum])
  52.  
  53. PerfectScript Syntax
  54.  
  55. FileExit ([DoSave?:Enumeration {Yes!; No!}])
  56.  
  57. Description
  58.  
  59. {FileExit} closes Quattro Pro. The optional argument DoSave? indicates whether to display a save prompt before closing files with changes. Use 1, the default, to prompt for changes; 0 suppresses save prompts.
  60.  
  61. Parameters
  62.  
  63. DoSave?    Whether to display a save prompt for modified files: no (0), yes (1); 1 is the default
  64.  
  65. FileExtract
  66.  
  67. Syntax
  68.  
  69. FileExtract(What As _FileExtract_What_enum, Blocks As String, FileName As String, [Option As _FileExtract_Option_enum])
  70.  
  71. PerfectScript Syntax
  72.  
  73. FileExtract (What:Enumeration {Formulas!; Values!}; Blocks:String; Filename:String; [Option:Enumeration {Confirm!; Replace!; Backup!}])
  74.  
  75. Description
  76.  
  77. {FileExtract} saves part of a notebook to a separate file, leaving the original file intact. Use "Formulas" to retain formulas; use "Values" to convert formulas to values. The optional argument--"Replace," "Backup," or "Confirm"--indicates how to treat an existing file with the same name (without displaying a prompt).
  78.  
  79. You can use {FileExtract?} or {FileExtract!} to display the Extract To File dialog box. {FileExtract?} lets you manipulate the dialog box, whereas {FileExtract!} relies on the macro to manipulate it.
  80.  
  81. Parameters
  82.  
  83. Blocks    Selection or selections to extract
  84.  
  85. Filename    Name of the new file containing Blocks
  86.  
  87. FileImport
  88.  
  89. Syntax
  90.  
  91.  FileImport(FileName As String, Method As String)
  92.  
  93. PerfectScript Syntax
  94.  
  95. FileImport (Filename:String; Method:String)
  96.  
  97. Description
  98.  
  99. {FileImport} copies a text file into the active sheet of a notebook. Enter the option string that describes the type of file to import.
  100.  
  101. You can use {FileImport?} or {FileImport!} to display the Text Import dialog box. {FileImport?} lets you manipulate the dialog box, whereas {FileImport!} relies on the macro to manipulate it.
  102.  
  103. FileNew
  104.  
  105. Syntax
  106.  
  107. FileNew([TemplateName As String])
  108.  
  109. PerfectScript Syntax
  110.  
  111. FileNew ([TemplateName:String])
  112.  
  113. Description
  114.  
  115. {FileNew} opens a blank notebook or a notebook based on a QuickTemplate.
  116.  
  117. You can use {FileNew?} or {FileNew!} to display the New File dialog box. {FileNew?} lets you manipulate the dialog box, whereas {FileNew!} relies on the macro to manipulate it.
  118.  
  119. FileNew opens only templates in the default QuickTemplates folder.
  120.  
  121. Example
  122.  
  123. The following macro opens a blank notebook:
  124.  
  125. {FileNew}
  126.  
  127. The following macro opens a new notebook based on the 7-Year Balloon Loan QuickTemplate:
  128.  
  129. {FileNew "7 Year Balloon Loan"}
  130.  
  131. Parameters
  132.  
  133. TemplateName    The name of a QuickTemplate
  134.  
  135. {FileOpen}
  136.  
  137. Syntax
  138.  
  139. FileOpen(FileName As String, [Option As _FileOpen_Option_enum])
  140.  
  141. PerfectScript Syntax
  142.  
  143. FileOpen (Filename:String; [Option:Enumeration {Open!; Update!; None!}])
  144.  
  145. Description
  146.  
  147. {FileOpen} opens the specified file.
  148.  
  149. You can use {FileOpen?} or {FileOpen!} to display the Open File dialog box. {FileOpen?} lets you manipulate the dialog box, whereas {FileOpen!} relies on the macro to manipulate it.
  150.  
  151. Parameters
  152.  
  153. Filename    Name of the file to open.
  154.  
  155. Open as Copy    Yes or No, (1 or 0), 0 is the default.
  156.  
  157. {FileRetrieve}
  158.  
  159. Syntax
  160.  
  161.  FileRetrieve(FileName As String, [Option As _FileRetrieve_Option_enum])
  162.  
  163. PerfectScript Syntax
  164.  
  165. FileRetrieve (Filename:String; [Option:Enumeration {Open!; Update!; None!}])
  166.  
  167. Description
  168.  
  169. {FileRetrieve} loads a notebook into the active notebook, replacing any existing data there.
  170.  
  171. You can use {FileRetrieve?} or {FileRetrieve!} to display the Retrieve File dialog box. {FileRetrieve?} lets you manipulate the dialog box, whereas {FileRetrieve!} relies on the macro to manipulate it.
  172.  
  173. Parameters
  174.  
  175. Filename    Name of the file to retrieve
  176.  
  177. {FileSave}, {FileSaveAll}, and {FileSaveAs}
  178.  
  179. Syntax
  180.  
  181. FileSave([Option As _FileSave_Option_enum])
  182.  
  183. FileSaveAll([Mode As _FileSaveAll_Mode_enum])
  184.  
  185. FileSaveAs(FileName As String, [Option As _FileSaveAs_Option_enum], [reserved As Integer], [FileType As String])
  186.  
  187. PerfectScript Syntax
  188.  
  189. FileSave ([Option:Enumeration {Confirm!; Replace!; Backup!}])
  190.  
  191. FileSaveAll ([Mode:Enumeration {Confirm!; Replace!; Backup!}])
  192.  
  193. FileSaveAs (Filename:String; [Option:Enumeration {Confirm!; Replace!; Backup!}]; [reserved:Numeric]; [FileType:String])
  194.  
  195. Description
  196.  
  197. {FileSave} saves the active notebook, {FileSaveAll} saves all open notebooks, and {FileSaveAs} lets you save the active notebook under another name (Filename). The optional argument--"Replace," "Backup," or "Confirm"--indicates how to treat a previous version of the file (without displaying a prompt).
  198.  
  199. The optional <FileType> argument for {FileSaveAs} specifies the type of file to save and is equivalent to the Save File As Type option in the Save File dialog box. If you do not specify a file type, the default is "QPW v6."
  200.  
  201. You can use {FileSaveAs?} or {FileSaveAs!} to display the Save File dialog box. {FileSaveAs?} lets you manipulate the dialog box, whereas {FileSaveAs!} relies on the macro to manipulate it.
  202.  
  203. The following table shows the available file types. For file types with abbreviated names, a short description is provided.
  204.  
  205. File Types    Description
  206.  
  207. QPW v7/v8    Quattro Pro for Windows, version 7.0 and 8.0
  208.  
  209. QPW v6    Quattro Pro for Windows, version 6.0
  210.  
  211. QPW    Quattro Pro for Windows, version 1.0 and 5.0
  212.  
  213. QP/DOS    Quattro Pro for DOS
  214.  
  215. Excel v5/v7    Excel, Version 5.0 and Version 7.0
  216.  
  217. Excel    Excel, Version 4.0
  218.  
  219. 1-2-3 v4/v5    1-2-3, Version 4 and Version 5
  220.  
  221. 1-2-3 v3.x    1-2-3, Version 3x
  222.  
  223. 1-2-3 v2.x    1-2-3, Version 2x
  224.  
  225. 1-2-3 v1.0    1-2-3, Version 1.0
  226.  
  227. 1-2-3 Ed.    1-2-3, Educational Version
  228.  
  229. Paradox    
  230.  
  231. dBASE IV    
  232.  
  233. dBASE III    
  234.  
  235. dBASE II    
  236.  
  237. Text    tab-delimited text
  238.  
  239. DIF    VisiCalc
  240.  
  241. SYLK    Multiplan
  242.  
  243. HTML    Hypertext Markup Language files, Version 3 (for distribution on the Internet's World Wide Web)
  244.  
  245. Example
  246.  
  247. To close all files and save without confirmation, use this macro:
  248.  
  249. {FileSaveAll Replace}
  250.  
  251. {FileCloseAll 0}
  252.  
  253. Options
  254.  
  255. {FileSave <Replace|Backup|Confirm>}    Saves the notebook to the name under which you last saved it
  256.  
  257. {FileSaveAll <Replace|Backup|Confirm>}    Saves the file over a previous version with the same name
  258.  
  259. {FileSaveAs Filename, <Replace | Backup | Confirm>,, <FileType>}    Saves the notebook under a new name you specify
  260.  
  261. {FileSend}
  262.  
  263. Syntax
  264.  
  265. FileSend([FileName As String])
  266.  
  267. PerfectScript Syntax
  268.  
  269. FileSend ([Filename:String])
  270.  
  271. Description
  272.  
  273. {FileSend} lets you send notebook sheets via one of your mail systems.
  274.  
  275. Example
  276.  
  277. {FileSend MYSTATUS.WB3} sends the notebook MYSTATUS.WB3 to another user.
  278.  
  279. Options
  280.  
  281. {FileSend <Filename>}    Sends selected text or an entire notebook by e-mail
  282.  
  283. { FileVersion_Retrieve }
  284.  
  285. Syntax
  286.  
  287.  FileVersion_Retrieve(Filename_ As String)
  288.  
  289. PerfectScript Syntax
  290.  
  291. FileVersion_Retrieve (Filename?:String)
  292.  
  293. Description
  294.  
  295. {FileVersion.Retrieve } retrieves any archived version of a file
  296.  
  297. { FileVersion_Retrieve_Current }
  298.  
  299. Syntax
  300.  
  301. FileVersion_Retrieve_Current()
  302.  
  303. PerfectScript Syntax
  304.  
  305. FileVersion_Retrieve_Current ()
  306.  
  307. Description
  308.  
  309. {FileVersion.Retrieve_Current} retrieves the most current version of the file.
  310.  
  311. { FileVersionSave }
  312.  
  313. Syntax
  314.  
  315. FileVersionSave()
  316.  
  317. PerfectScript Syntax
  318.  
  319. FileVersionSave ()
  320.  
  321. Description
  322.  
  323. {FileVersionSave} saves the current file as a different version.
  324.  
  325. {FLOATCOPY}
  326.  
  327. Syntax
  328.  
  329.  FloatCopy(UpperCell As String, xoffset As Double, yoffset As Double)
  330.  
  331. PerfectScript Syntax
  332.  
  333. FloatCopy (UpperCell:String; xoffset:Numeric; yoffset:Numeric)
  334.  
  335. Description
  336.  
  337. {FLOATCOPY} lets you copy a floating object in the active notebook window. The item to copy is selected using {SELECTFLOAT}. The new position in {FLOATCOPY} is specified as a positive offset from a cell in the notebook.
  338.  
  339. To copy a floating chart to another notebook, specify a notebook as well as a cell for UpperCell.
  340.  
  341. Example
  342.  
  343. The following macro selects the floating chart Inserted1 and copies it to [SALES]A:C10.
  344.  
  345. {SELECTFLOAT Inserted1}
  346.  
  347. {FLOATCOPY [SALES]A:C10,0,0}
  348.  
  349. Parameters
  350.  
  351. UpperCell    Cell containing the new upper-left corner of the floating object
  352.  
  353. xoffset    Offset in twips from the left edge of UpperCell to the left edge of the floating object
  354.  
  355. yoffset    Offset in twips from the top edge of UpperCell to the top edge of the floating object
  356.  
  357. {FLOATCREATE}
  358.  
  359. Syntax
  360.  
  361.  FloatCreate(type As String, UpperCell As String, xoffset As Double, yoffset As Double, LowerCell As String, xoffset2 As Double, yoffset2 As Double, [TextOrStartCorner])
  362.  
  363. PerfectScript Syntax
  364.  
  365. FloatCreate (Type:String; UpperCell:String; xoffset:Numeric; yoffset:Numeric; LowerCell:String; xoffset2:Numeric; yoffset2:Numeric; [TextOrStartCorner:Any])
  366.  
  367. Description
  368.  
  369. {FLOATCREATE} lets you create macro buttons, floating charts, or a draw layer objects (lines, arrows, rectangles, rounded rectangles, ellipses, or text boxes) in the active notebook window. Use {CREATEOBJECT} to create objects in dialog windows or chart windows.
  370.  
  371. All positions in {FLOATCREATE} are positive offsets from cells in the notebook containing the upper-left and lower-right corners of the object.
  372.  
  373. Notes
  374.  
  375.   If you need to modify the floating object after creating it, change the property settings immediately after creation. It is selected then, so you will not need to click it or use {SELECTFLOAT}.
  376.   
  377.   You should also change the name at this time and document it for later use with {SELECTFLOAT}.
  378.   
  379. Example
  380.  
  381. The following macro creates a macro button that covers the cells A1..B2, then stores the name of the button in A26. The button reads Save File:
  382.  
  383.     {FLOATCREATE Button,A1,0,0,C3,0,0, "Save File"}
  384.  
  385.     {GETPROPERTY A26, "Object_Name"}
  386.  
  387. The following macro creates a button 50 twips to the right and 50 twips below the upper-left corner of the button in the previous example. It reads Open File:
  388.  
  389.     {FLOATCREATE Button,A1,50,50,C3,50,50, "Open File"}
  390.  
  391. The following macro creates a floating chart that is offset 35 twips from the cells C2..E10, but the same size:
  392.  
  393.     {GraphNew Chart3}
  394.  
  395.     {FLOATCREATE Chart,C2,35,35,E10,35,35,"Chart3"}
  396.  
  397. The following macro creates a floating arrow over the cells B8..Dll . The arrow starts at the southwest corner of the cells, and ends with an arrowhead at the northwest corner.
  398.  
  399.     {FloatCreate Arrow,A:B8,0,0,A:D11,945,45,4}
  400.  
  401. The following macro creates a floating ellipse over the cells E10..E13, then fills the ellipse with a red color.
  402.  
  403.     {FloatCreate Ellipse,A:E10,0,120,A:E13,945,240}
  404.  
  405.     {Setproperty Fill_Color, "255,0,0"}
  406.  
  407. Parameters
  408.  
  409. Type     Floating object to create: Chart, Button, Line, Arrow, Rect, Rounded_Rect, Ellipse, or Text
  410.  
  411. UpperCell    Cell containing the upper-left corner of the chart or macro button
  412.  
  413. xoffset    Offset in twips from the left edge of UpperCell to the left edge of the floating object
  414.  
  415. yoffset    Offset in twips from the top edge of UpperCell to the top edge of the floating object
  416.  
  417. LowerCell    Cell containing the lower-right corner of the chart or macro button
  418.  
  419. xoffset2    Offset in twips from the left edge of LowerCell to the right Edge of the floating object
  420.  
  421. yoffset2    Offset in twips from the top edge of LowerCell to the bottom edge of the floating object
  422.  
  423. Text    For Chart, the named chart to display; for Button, the button text
  424.  
  425. StartCorner    For Line or Arrow, a number representing the starting corner; 1 = northwest, 2 = northeast, 3 = southeast, 4 = southwest (for example, an arrow pointing up and to the right would have a StartCorner of 4)
  426.  
  427. {FLOATMOVE}
  428.  
  429. Syntax
  430.  
  431.  FloatMove(UpperCell As String, xoffset As Double, yoffset As Double)
  432.  
  433. PerfectScript Syntax
  434.  
  435. FloatMove (UpperCell:String; xoffset:Numeric; yoffset:Numeric)
  436.  
  437. Description
  438.  
  439. {FLOATMOVE} lets you move a floating object in the active notebook window. The item to move is selected using {SELECTFLOAT}. The new position in {FLOATMOVE} is specified as a positive offset from a cell in the notebook.
  440.  
  441. To move a floating chart to another notebook, specify a notebook as well as a cell for UpperCell.
  442.  
  443. Example
  444.  
  445. The following macro selects the floating chart Inserted1 and moves it to [SALES]A:C10.
  446.  
  447. {SELECTFLOAT Inserted1}
  448.  
  449. {FLOATMOVE [SALES]A:C10,0,0}
  450.  
  451. Parameters
  452.  
  453. UpperCell    Cell containing the new upper-left corner of the floating object
  454.  
  455. xoffset    Offset in twips from the left edge of UpperCell to the left edge of the floating object
  456.  
  457. yoffset    Offset in twips from the top edge of UpperCell to the top edge of the floating object
  458.  
  459. {FloatOrder}
  460.  
  461. Syntax
  462.  
  463. {FloatOrder.Option}
  464.  
  465. PerfectScript Syntax
  466.  
  467. FloatOrder_Backward ()
  468.  
  469. FloatOrder_Forward ()
  470.  
  471. FloatOrder_ToBack ()
  472.  
  473. FloatOrder_ToFront ()
  474.  
  475. Description
  476.  
  477. {FloatOrder} works on selected objects to arrange layers of floating charts and other floating objects in the notebook window.
  478.  
  479. Options
  480.  
  481. {FloatOrder.ToBack}    Send the selected object to the back layer
  482.  
  483. {FloatOrder.Backward}    Send the selected object back one layer
  484.  
  485. {FloatOrder.ToFront}    Send the selected object to the front layer
  486.  
  487. {FloatOrder.Forward}    Send the selected object forward one layer
  488.  
  489. {FLOATSIZE}
  490.  
  491. Syntax
  492.  
  493. FloatSize(UpperCell As String, xoffset As Double, yoffset As Double, LowerCell As String, xoffset2 As Double, yoffset2 As Double)
  494.  
  495. PerfectScript Syntax
  496.  
  497. FloatSize (UpperCell:String; xoffset:Numeric; yoffset:Numeric; LowerCell:String; xoffset2:Numeric; yoffset2:Numeric)
  498.  
  499. Description
  500.  
  501. {FLOATSIZE} lets you resize a floating object in the active notebook window. The item to resize is selected using {SELECTFLOAT}.
  502.  
  503. All positions in {FLOATSIZE} are positive offsets from a cell in the notebook.
  504.  
  505. Parameters
  506.  
  507. UpperCell    Cell containing the new upper-left corner of the chart or macro button
  508.  
  509. xoffset    Offset in twips from the left edge of UpperCell to the left edge of the floating object
  510.  
  511. yoffset    Offset in twips from the top edge of UpperCell to the top edge of the floating object
  512.  
  513. LowerCell    Cell containing the new lower-right corner of the chart or macro button
  514.  
  515. xoffset2    Offset in twips from the left edge of LowerCell to the right edge of the floating object
  516.  
  517. yoffset2    Offset in twips from the top edge of LowerCell to the bottom edge of the floating object
  518.  
  519. {FLOATTEXT}
  520.  
  521. Syntax
  522.  
  523.  FloatText(String As String)
  524.  
  525. PerfectScript Syntax
  526.  
  527. FloatText (String:String)
  528.  
  529. Description
  530.  
  531. {FLOATTEXT} replaces the text in the selected text box with the specified string. The text box can be on a notebook sheet or in a chart window.
  532.  
  533. Example
  534.  
  535. The following macro selects a floating text box named Text1 and replaces the text in it with "Quarterly Sales Report."
  536.  
  537. {SELECTFLOAT Text1}
  538.  
  539. {FLOATTEXT "Quarterly Sales Report"}
  540.  
  541. Parameters
  542.  
  543. String    String of characters used to replace text in the text box
  544.  
  545. {Form}
  546.  
  547. Syntax
  548.  
  549.  Form([Block_ As String])
  550.  
  551. PerfectScript Syntax
  552.  
  553. Form(Block?:<Block>)
  554.  
  555. Description
  556.  
  557. Equivalent to Tools  Database Tools  Form. Lets you create forms for entering and finding data records without programming.
  558.  
  559. Parameter
  560.  
  561. Block    A database block including field labels and records
  562.  
  563. {FOURIER}
  564.  
  565. Syntax
  566.  
  567.  FOURIER(InBlock As String, OutBlock As String, [Inverse_ As _FOURIER_Inverse__enum])
  568.  
  569. PerfectScript Syntax
  570.  
  571. FOURIER (InBlock:String; OutBlock:String; [Inverse?:Enumeration {Yes!; No!}])
  572.  
  573. Description
  574.  
  575. {FOURIER} performs a fast Fourier transformation on cells of data. {FOURIER} is equivalent to the Fourier analysis tool.
  576.  
  577. Parameters
  578.  
  579. InBlock    One or more numeric cell values representing the input cells; can be real or complex numbers; the number of values in InBlock must be a power of 2 between 2 and 1024 inclusive (for example, 2, 4, 8, 16,...); if the number of values in InBlock does not equal a power of 2, pad the cells with additional zeros
  580.  
  581. OutBlock    Upper-left cell of the output cells
  582.  
  583. Inverse    0 to perform a Fourier transformation; 1 to perform the inverse Fourier transformation; the default is 0
  584.  
  585. {Frequency}
  586.  
  587. Syntax
  588.  
  589. {Frequency.Option}
  590.  
  591. PerfectScript Syntax
  592.  
  593. Frequency_Bin_Block (Block:String)
  594.  
  595. Frequency_Go ()
  596.  
  597. Frequency_Reset ()
  598.  
  599. Frequency_Value_Block (Block:String)
  600.  
  601. Description
  602.  
  603. {Frequency} counts the number of cases in the value Block that fall within each interval specified in the bin Block. Use {Frequency.Bin_Block} and {Frequency.Value_Block}, then {Frequency.Go}. You can use {Frequency.Reset} before or after the other commands to clear current settings.
  604.  
  605. You can use {Frequency?} or {Frequency!} to display the Frequency Tables dialog box. {Frequency?} lets you manipulate the dialog box, whereas {Frequency!} relies on the macro to manipulate it.
  606.  
  607. Example
  608.  
  609. The following macro counts the data in cells C1..E13 of sheet A and groups it according to the intervals given in G1..G7; frequencies display in column H.
  610.  
  611. {Frequency.Value_Block A:C1..E13}
  612.  
  613. {Frequency.Bin_Block A:G1..G7}
  614.  
  615. {Frequency.Go}
  616.  
  617. Options
  618.  
  619. {Frequency.Bin_Block Block}    Specifies cells that define value intervals or "bins" of values to be counted
  620.  
  621. {Frequency.Go}    Accepts the frequency settings
  622.  
  623. {Frequency.Reset}    Clears all settings
  624.  
  625. {Frequency.Value_Block Block}    Specifies the cells or list of cells containing values to be counted
  626.  
  627. {FTESTV}
  628.  
  629. Syntax
  630.  
  631. FTESTV(InBlock1 As String, InBlock2 As String, OutBlock As String, [Labels_ As _FTESTV_Labels__enum])
  632.  
  633. PerfectScript Syntax
  634.  
  635. FTESTV (InBlock1:String; InBlock2:String; OutBlock:String; [Labels?:Enumeration {Yes!; No!}])
  636.  
  637. Description
  638.  
  639. {FTESTV} performs a two-sample F-test to compare population variances. {FTESTV} is equivalent to the F-Test analysis tool.
  640.  
  641. Parameters
  642.  
  643. InBlock1    The first input cells containing a column or row of numeric values
  644.  
  645. InBlock2    The second input cells containing a column or row of numeric values
  646.  
  647. OutBlock    Upper-left cell of the output cells
  648.  
  649. 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
  650.  
  651. {FUNCTIONS}
  652.  
  653. Syntax
  654.  
  655. Functions()
  656.  
  657. Description
  658.  
  659. {FUNCTIONS} is equivalent to the Functions key Alt+F3, which displays a list of @functions to enter in the input line.
  660.  
  661.  
  662.  
  663.  
  664.  
  665.  
  666.