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

  1. FancyPageBorder
  2.  
  3. Syntax
  4.  
  5. FancyPageBorder(Filename As String)
  6.  
  7. Description
  8.  
  9. Specify a Fancy Border for the current page. This method places a Fancy Border code in the current document at the beginning of the paragraph where the insertion point is located.
  10.  
  11. Parameters
  12.  
  13. Filename: string    The filename of the graphic you want to use as a page border.
  14.  
  15. FancyPageBorderInParagraph
  16.  
  17. Syntax
  18.  
  19. FancyPageBorderInParagraph() As Boolean
  20.  
  21. Description
  22.  
  23. Return a value indicating whether the current paragraph contains a Fancy Border code. The current paragraph is the paragraph where the insertion point is located. (This method returns 0 if the current paragraph contains a Fancy Border code following the insertion point. Since the Fancy Border code is always inserted at the beginning of the current paragraph when created or edited, this condition could exist only if the code was moved manually.)
  24.  
  25. Return Value
  26.  
  27. 0    Fancy Border code not in current paragraph
  28.  
  29. 1    Fancy Border code in current paragraph
  30.  
  31. FancyPageBorderOccur
  32.  
  33. Syntax
  34.  
  35. FancyPageBorderOccur() As Boolean
  36.  
  37. Description
  38.  
  39. Return True if Fancy Page Borders are active at the insertion point, False if not. This method will return False if there is no Fancy Border code in the document before the insertion point, even if a Fancy Border code follows the insertion point on the same page.
  40.  
  41. FancyPageBorderOff
  42.  
  43. Syntax
  44.  
  45. FancyPageBorderOff()
  46.  
  47. Description
  48.  
  49. Turn off Fancy Page Borders. This method inserts a Fancy Border End code at the insertion point. If the insertion point is located following the Fancy Border definition code and on the same page, rather than inserting a Fancy Border End code, the Fancy Border definition code is removed.
  50.  
  51. FigurePaletteDlg
  52.  
  53. Syntax
  54.  
  55. FigurePaletteDlg()
  56.  
  57. Description
  58.  
  59. Display the Image Tools palette in order to edit an image.
  60.  
  61. FigurePaletteDlgEnd
  62.  
  63. Syntax
  64.  
  65. FigurePaletteDlgEnd()
  66.  
  67. Description
  68.  
  69. Close the Image Tools palette.
  70.  
  71. FigureRetrieveDlg
  72.  
  73. Syntax
  74.  
  75. FigureRetrieveDlg()
  76.  
  77. Description
  78.  
  79. Display the Insert Image dialog box.
  80.  
  81. FileChangeAttributes
  82.  
  83. Syntax
  84.  
  85. FileChangeAttributes(Filename As String, [Attributes])
  86.  
  87. Description
  88.  
  89. Rename a file and specify a file type.
  90.  
  91. Parameters
  92.  
  93. Filename: string    The name of the file whose attributes you want to change.
  94.  
  95. Attributes: enumeration (optional)    Archive!
  96.  
  97. Hidden!
  98.  
  99. Normal!
  100.  
  101. ReadOnly!
  102.  
  103. System!
  104.  
  105. FileChangeDir
  106.  
  107. Syntax
  108.  
  109. FileChangeDir(Directory As String)
  110.  
  111. Description
  112.  
  113. Change the Documents or Graphics Files directory.
  114.  
  115. Parameters
  116.  
  117. Directory: string    The directory to which you want to move the file.
  118.  
  119. FileCopy
  120.  
  121. Syntax
  122.  
  123.  FileCopy(SourceFile As String, DestinationFile As String)
  124.  
  125. Description
  126.  
  127. Copy a source file to a destination file.
  128.  
  129. Parameters
  130.  
  131. SourceFile: string    The path and filename of the original file.
  132.  
  133. DestinationFile: string    The path and filename of the copy.
  134.  
  135. FileDelete
  136.  
  137. Syntax
  138.  
  139.  FileDelete([Filename As String])
  140.  
  141. Description
  142.  
  143. Delete a specific file.
  144.  
  145. Parameters
  146.  
  147. Filename: string (optional)    The name of the file to delete.
  148.  
  149. FileExists
  150.  
  151. Syntax
  152.  
  153. FileExists(Variable, Filename As String)
  154.  
  155. Description
  156.  
  157. Return whether a specified file exists.
  158.  
  159. Parameters
  160.  
  161. Variable: variable    True (exists) or False (not exist).
  162.  
  163. Filename: string    The name of the file.
  164.  
  165. FileInsert
  166.  
  167. Syntax
  168.  
  169.  FileInsert([Filename As String], [AutoDetect As _FileInsert_AutoDetect_enum], [InsertIntoDoc As _FileInsert_InsertIntoDoc_enum])
  170.  
  171. Description
  172.  
  173. Retrieve a file into the current document at the insertion point.
  174.  
  175. Parameters
  176.  
  177. Filename: string (optional)    The name of the file to insert.
  178.  
  179. AutoDetect: enumeration (optional)    No!
  180.  
  181. Yes!
  182.  
  183. InsertIntoDoc: enumeration (optional)    Display a prompt before a file is inserted. Default: Insert! - insert file without prompt.
  184.  
  185. Insert!
  186.  
  187. Prompt!
  188.  
  189. FileInsertDlg
  190.  
  191. Syntax
  192.  
  193. FileInsertDlg()
  194.  
  195. Description
  196.  
  197. Display the Insert File dialog box, which allows you to retrieve an existing file.
  198.  
  199. FileMove
  200.  
  201. Syntax
  202.  
  203. FileMove([SourceFile As String], [DestinationFile As String])
  204.  
  205. Description
  206.  
  207. Rename and move a file.
  208.  
  209. Parameters
  210.  
  211. SourceFile: string (optional)    The original filename and/or location.
  212.  
  213. DestinationFile: string (optional)    The new filename and/or location.
  214.  
  215. FileNew
  216.  
  217. Syntax
  218.  
  219. FileNew()
  220.  
  221. Description
  222.  
  223. Create a new document based on the default template. If the maximum nine documents are open, the macro ends or goes to the ONERROR label.
  224.  
  225. Example
  226.  
  227. In the following example, three WordPerfect documents are saved in the 'C:\'. The code in the 'For' loop will be executed three times. A new WordPerfect document is created as a result of calling FileNew(). The name of the string variable is file.Notice that the value of i, which is the loop index, is added to the name of the file. This will ensure that each file has a unique name and is not overwritten. The BodyAll() is responsible for populating the WordPerfect document (This method is a User Defined Method and is not a member of the PerfectScript class). After the file is saved, the WordPerfect document is closed. The PS object is the PerfectScript object.
  228.  
  229.  
  230.  
  231. '****** Declare all variables
  232.  
  233. Dim mypath as String
  234.  
  235. Dim myfile as String
  236.  
  237.  
  238.  
  239. '****** Declare a PerfectScript Object
  240.  
  241. Dim PS as PerfectScript
  242.  
  243.  
  244.  
  245. '****** Allocate memory to the PerfectScript object
  246.  
  247. Set PS = new PerfectScript
  248.  
  249.  
  250.  
  251. '***** Create and Save three documents. Begin the For loop
  252.  
  253. For i = 1 To 3
  254.  
  255.  
  256.  
  257. '****** Create a new WordPerfect Document
  258.  
  259. PS.FileNew
  260.  
  261. PS.ClearDoc
  262.  
  263.  
  264.  
  265. '***** Define the path and file
  266.  
  267. mypath = "C:\Letter"
  268.  
  269.  
  270.  
  271. '***** Define the file to save
  272.  
  273. myfile = mypath & i & ".wpd"
  274.  
  275.  
  276.  
  277. '***** Populate the WordPerfect document
  278.  
  279. BodyAll
  280.  
  281.  
  282.  
  283. '***** Save the WordPerfect Document
  284.  
  285. PS.FileSave myfile
  286.  
  287.  
  288.  
  289. '***** Close the File
  290.  
  291. PS.Close No_Close_Save
  292.  
  293.  
  294.  
  295. '***** End the For loop
  296.  
  297. Next i
  298.  
  299. FileOpen
  300.  
  301. Syntax
  302.  
  303. FileOpen(Filename As String, [Format As _FileOpen_Format_enum])
  304.  
  305. Description
  306.  
  307. Retrieve a specified file into a new document window. If the maximum nine document windows are open, the macro ends or goes to the ONERROR label.
  308.  
  309. Parameters
  310.  
  311. Filename: string    
  312.  
  313.   Format: enumeration(optional)    AmiPro_12!
  314.  
  315. AmiPro_12A!
  316.  
  317. AmiPro_12B!
  318.  
  319. AmiPro_20!
  320.  
  321. AmiPro_30!
  322.  
  323. ANSIDelimitedTextWindows!
  324.  
  325. ANSIGenericWordProcessor_Windows!
  326.  
  327. ANSIText_Windows!
  328.  
  329. AreAHangol!
  330.  
  331. Aruga_23!
  332.  
  333. ASCIIStandard!
  334.  
  335. ASCIIStripped!
  336.  
  337. DelimitedText!
  338.  
  339. DisplayWrite_40!
  340.  
  341. DisplayWrite_42!
  342.  
  343. DisplayWrite_50!
  344.  
  345. Excel_40!
  346.  
  347. FFT!
  348.  
  349. Hana!
  350.  
  351. HTML!
  352.  
  353. Ichitaro_3x!
  354.  
  355. Ichitaro_4x!
  356.  
  357. Ichitaro_5x!
  358.  
  359. Kermit_7bit_Transfer!
  360.  
  361. Matu_4!
  362.  
  363. Matu_5!
  364.  
  365. Matu_6!
  366.  
  367. MicroSoftWord_40!
  368.  
  369. MicroSoftWord_50!
  370.  
  371. MicroSoftWord_55!
  372.  
  373. MultiMate_33!
  374.  
  375. MultiMate_40!
  376.  
  377. MultiMateAdvantage_36!
  378.  
  379. MultiMateAdvantageII_10!
  380.  
  381. NavyDIF!
  382.  
  383. OfficeWriter_60!
  384.  
  385. OfficeWriter_61!
  386.  
  387. OfficeWriter_611!
  388.  
  389. OfficeWriter_62!
  390.  
  391. P1EXE!
  392.  
  393. RFT!
  394.  
  395. RTF!
  396.  
  397. RTFJ!
  398.  
  399. SGML!
  400.  
  401. WaiSing_251!
  402.  
  403. WindowsWrite!
  404.  
  405. WordForWindows_10!
  406.  
  407. WordForWindows_11!
  408.  
  409. WordForWindows_12!
  410.  
  411. WordForWindows_1A!
  412.  
  413. WordForWindows_20!
  414.  
  415. WordForWindows_20a!
  416.  
  417. WordForWindows_20b!
  418.  
  419. WordForWindows_20c!
  420.  
  421. WordForWindows_50!
  422.  
  423. WordForWindows_60!
  424.  
  425. WordPerfect_42!
  426.  
  427. WordPerfect_50!
  428.  
  429. WordPerfect_51!
  430.  
  431. WordPerfect_5xA!
  432.  
  433. WordPerfect_60!
  434.  
  435. WordPerfect_7!
  436.  
  437. WordStar_33!
  438.  
  439. WordStar_331!
  440.  
  441. WordStar_34!
  442.  
  443. WordStar_40!
  444.  
  445. WordStar_50!
  446.  
  447. WordStar_55!
  448.  
  449. WordStar_60!
  450.  
  451. WordStar2000_10!
  452.  
  453. WordStar2000_20!
  454.  
  455. WordStar2000_30!
  456.  
  457. WPS_Chinese!
  458.  
  459. XyWriteIIIPlus_355!
  460.  
  461. XyWriteIIIPlus_356!
  462.  
  463. FileOpenDlg
  464.  
  465. Syntax
  466.  
  467. FileOpenDlg()
  468.  
  469. Description
  470.  
  471. Display the Open File dialog box.
  472.  
  473. FileRemoveDirectory
  474.  
  475. Syntax
  476.  
  477. FileRemoveDirectory(Directory As String)
  478.  
  479. Description
  480.  
  481. Remove a directory.
  482.  
  483. Parameters
  484.  
  485. Directory: string    The directory to remove.
  486.  
  487. FileSave
  488.  
  489. Syntax
  490.  
  491.  FileSave([Filename As String], [ExportType As _FileSave_ExportType_enum], [Overwrite As _FileSave_Overwrite_enum])
  492.  
  493. Description
  494.  
  495. Save the current file or display the Save As dialog box for a new document.
  496.  
  497. Parameters
  498.  
  499. Filename: string (optional)    
  500.  
  501. ExportType: enumeration (optional)    AmiPro_12!
  502.  
  503. AmiPro_12A!
  504.  
  505. AmiPro_12B!
  506.  
  507. AmiPro_20!
  508.  
  509. AmiPro_30!
  510.  
  511. ANSIDelimitedTextWindows!
  512.  
  513. ANSIGeneratedWordProcessor_Windows!
  514.  
  515. ANSIText_Windows!
  516.  
  517. AreAHangol!
  518.  
  519. Aruga_23!
  520.  
  521. ASCIIStandard!
  522.  
  523. ASCIIStripped!
  524.  
  525. DelimitedText!
  526.  
  527. DisplayWrite_40!
  528.  
  529. DisplayWrite_42!
  530.  
  531. DisplayWrite_50!
  532.  
  533. EDGAR!
  534.  
  535. Excel_40!
  536.  
  537. FFT!
  538.  
  539. Hana!
  540.  
  541. HTML!
  542.  
  543. Ichitaro_3x!
  544.  
  545. Ichitaro_4x!
  546.  
  547. Ichitaro_5x!
  548.  
  549. Kermit_7bit_Transfer!
  550.  
  551. Matu_4!
  552.  
  553. Matu_5!
  554.  
  555. Matu_6!
  556.  
  557. MicroSoftWord_40!
  558.  
  559. MicroSoftWord_50!
  560.  
  561. MicroSoftWord_55!
  562.  
  563. MultiMate_33!
  564.  
  565. MultiMate_40!
  566.  
  567. MultiMateAdvantage_36!
  568.  
  569. MultiMateAdvantageII_10!
  570.  
  571. NavyDIF!
  572.  
  573. OfficeWriter_60!
  574.  
  575. OfficeWriter_61!
  576.  
  577. OfficeWriter_611!
  578.  
  579. OfficeWriter_62!
  580.  
  581. P1EXE!
  582.  
  583. RFT!
  584.  
  585. RTF!
  586.  
  587. RTFJ!
  588.  
  589. SGML!
  590.  
  591. WaiSing_251!
  592.  
  593. WindowsWrite!
  594.  
  595. WordForWindows_10!
  596.  
  597. WordForWindows_11!
  598.  
  599. WordForWindows_12!
  600.  
  601. WordForWindows_1A!
  602.  
  603. WordForWindows_20!
  604.  
  605. WordForWindows_20a!
  606.  
  607. WordForWindows_20b!
  608.  
  609. WordForWindows_20c!
  610.  
  611. WordForWindows_50!
  612.  
  613. WordForWindows_60!
  614.  
  615. WordPerfect_42!
  616.  
  617. WordPerfect_50!
  618.  
  619. WordPerfect_51!
  620.  
  621. WordPerfect_5xA!
  622.  
  623. WordPerfect_60!
  624.  
  625. WordPerfect_7!
  626.  
  627. WordStar_33!
  628.  
  629. WordStar_331!
  630.  
  631. WordStar_34!
  632.  
  633. WordStar_40!
  634.  
  635. WordStar_50!
  636.  
  637. WordStar_55!
  638.  
  639. WordStar_60!
  640.  
  641. WordStar2000_10!
  642.  
  643. WordStar2000_20!
  644.  
  645. WordStar2000_30!
  646.  
  647. WPS_Chinese!
  648.  
  649. XyWriteIIIPlus_355!
  650.  
  651. XyWriteIIIPlus_356! 
  652.  
  653. Overwrite: enumeration (optional)    Automatically overwrite a file with the same name, or prompt the user to enter a new filename.
  654.  
  655. No!
  656.  
  657. Prompt!
  658.  
  659. Yes!
  660.  
  661. Example
  662.  
  663. In the following example, three WordPerfect documents are saved in the 'C:\'. The code in the 'For' loop will be executed three times. The name of the string variable is file.Notice that the value of i, which is the loop index, is added to the name of the file. This will ensure that each file has a unique name and is not overwritten. The BodyAll method is responsible for populating the WordPerfect document. After the file is saved, the WordPerfect document is closed. The PS object is the PerfectScript object.
  664.  
  665.  
  666.  
  667. '****** Declare all variables
  668.  
  669. Dim mypath as String
  670.  
  671. Dim myfile as String
  672.  
  673.  
  674.  
  675. '****** Declare a PerfectScript Object
  676.  
  677. Dim PS as PerfectScript
  678.  
  679.  
  680.  
  681. '****** Allocate memory to the PerfectScript object
  682.  
  683. Set PS = new PerfectScript
  684.  
  685.  
  686.  
  687. '***** Create and Save three documents. Begin the For loop
  688.  
  689. For i = 1 To 3
  690.  
  691.  
  692.  
  693. PS.FileNew
  694.  
  695. PS.ClearDoc
  696.  
  697.  
  698.  
  699. '***** Define the path and file
  700.  
  701. mypath = "C:\Letter"
  702.  
  703.  
  704.  
  705. '***** Define the file to save
  706.  
  707. myfile = mypath & i & ".wpd"
  708.  
  709.  
  710.  
  711. '***** Populate the WordPerfect document
  712.  
  713. BodyAll
  714.  
  715.  
  716.  
  717. '***** Save the WordPerfect Document
  718.  
  719. PS.FileSave myfile
  720.  
  721.  
  722.  
  723. '***** Close the File
  724.  
  725. PS.Close No_Close_Save
  726.  
  727.  
  728.  
  729. '***** End the For loop
  730.  
  731. Next i
  732.  
  733.  
  734.  
  735. FileSaveAsDlg
  736.  
  737. Syntax
  738.  
  739. FileSaveAsDlg()
  740.  
  741. Description
  742.  
  743. Display the Save As dialog box, which allows you to save a file.
  744.  
  745.  
  746.  
  747. FileStampShippingMacro
  748.  
  749. Syntax
  750.  
  751. FileStampShippingMacro()
  752.  
  753. Description
  754.  
  755. Play the shipping macro FILESTMP.WCM to display the File Stamp Options dialog box. The dialog box allows you to insert the path and filename of a document in a header or footer. FILESTMP.WCM must be installed.
  756.  
  757. FillColors
  758.  
  759. Syntax
  760.  
  761. FillColors([ForeColorName As String], [ForeRed As Integer], [ForeGreen As Integer], [ForeBlue As Integer], [ForeShade As Integer], [BackColorName As String], [BackRed As Integer], [BackGreen As Integer], [BackBlue As Integer], [BackShade As Integer])
  762.  
  763. Description
  764.  
  765. Specify a fill color for boxes and tables. Precede with methods such as BoxFill(), FillStyleCreate(), or TableBorderEditBegin(), and end with methods such as BoxUpdateDisplay() and BoxEnd(), FillStyleEnd(), or TableBorderEditEnd().
  766.  
  767. Parameters
  768.  
  769. ForeColorName: string (optional)    
  770.  
  771. ForeRed: numeric (optional)    Value: 0-255.
  772.  
  773. ForeGreen: numeric (optional)    Value: 0-255.
  774.  
  775. ForeBlue: numeric (optional)    Value: 0-255.
  776.  
  777. ForeShade: numeric (optional)    Percent: 0-100.
  778.  
  779. BackColorName: string (optional)    
  780.  
  781. BackRed: numeric (optional)    Value: 0-255.
  782.  
  783. BackGreen: numeric (optional)    Value: 0-255.
  784.  
  785. BackBlue: numeric (optional)    Value: 0-255.
  786.  
  787. BackShade: numeric (optional)    Percent: 0-100.
  788.  
  789. FillSetGradient
  790.  
  791. Syntax
  792.  
  793. FillSetGradient(Gradient As _FillSetGradient_Gradient_enum, [Angle As Double], [XLocation As Double], [YLocation As Double], [Calculate As Integer], [State As _FillSetGradient_State_enum])
  794.  
  795. Description
  796.  
  797. Customize a gradient fill. Precede with FillStyleCreate() or FillStyleEdit() and end with FillStyleEnd().
  798.  
  799. Parameters
  800.  
  801. Gradient: enumeration    LinearGradient!
  802.  
  803. RadialGradient!
  804.  
  805. RectangularGradient!
  806.  
  807. Angle: numeric (optional)    The angle of the gradient.
  808.  
  809. XLocation: numeric (optional)    The percentage of horizontal offset. A 10% offset places the center of the gradient effect toward the left edge; 50% centers it horizontally.
  810.  
  811. YLocation: numeric (optional)    The percentage of vertical offset. A 10% offset places the center of the gradient effect toward the top edge; 50% centers it vertically.
  812.  
  813. Calculate: numeric (optional)    The number of steps to create a gradient. Default: 30. Both maximum (999) and minimum (1) produce a solid appearance. The optimum is approximately 120.
  814.  
  815. State: enumeration (optional)    Turn the gradient fill on or off.
  816.  
  817. No!
  818.  
  819. Yes!
  820.  
  821. FillSetWPG2
  822.  
  823. Syntax
  824.  
  825. FillSetWPG2(PatternSet As Integer, index As _FillSetWPG2_Index_enum)
  826.  
  827. Description
  828.  
  829. Specify a pattern set and a pattern from the set. Precede with methods such as BoxFill(), FillStyleCreate(), or TableBorderEditBegin() and end with methods such as BoxUpdateDisplay(), FillStyleEnd(), or TableBorderEditEnd().
  830.  
  831. Parameters
  832.  
  833. PatternSet: numeric     Only 0 is available.
  834.  
  835. Index: enumeration     Specify a pattern:
  836.  
  837. WPG2_12Gray!
  838.  
  839. WPG2_25Gray!
  840.  
  841. WPG2_50Gray!
  842.  
  843. WPG2_Arch!
  844.  
  845. WPG2_Balls!
  846.  
  847. WPG2_Bricks1!
  848.  
  849. WPG2_Bricks2!
  850.  
  851. WPG2_Chainlink!
  852.  
  853. WPG2_Checkboard1!
  854.  
  855. WPG2_Checkboard2!
  856.  
  857. WPG2_Crosses!
  858.  
  859. WPG2_Crosshatch1!
  860.  
  861. WPG2_Crosshatch2!
  862.  
  863. WPG2_Crosshatch3!
  864.  
  865. WPG2_Crosshatch4!
  866.  
  867. WPG2_Fishscale!
  868.  
  869. WPG2_Honeycomb!
  870.  
  871. WPG2_Lines1!
  872.  
  873. WPG2_Lines2!
  874.  
  875. WPG2_Lines3!
  876.  
  877. WPG2_Lines4!
  878.  
  879. WPG2_Lines5!
  880.  
  881. WPG2_Lines6!
  882.  
  883. WPG2_Lines7!
  884.  
  885. WPG2_Lines8!
  886.  
  887. WPG2_Mesh!
  888.  
  889. WPG2_Patio!
  890.  
  891. WPG2_Plaid!
  892.  
  893. WPG2_Solid!
  894.  
  895. WPG2_Triangles!
  896.  
  897. WPG2_Waves!
  898.  
  899. WPG2_Weave! 
  900.  
  901. FillStyleCopy
  902.  
  903. Syntax
  904.  
  905. FillStyleCopy(StyleName, FromLibrary As _FillStyleCopy_FromLibrary_enum, ToLibrary As _FillStyleCopy_ToLibrary_enum, [DestName As String])
  906.  
  907. Description
  908.  
  909. Copy a fill style. You must pass the numeric value of the StyleName.
  910.  
  911. Parameters
  912.  
  913. StyleName: any    Fill10!
  914.  
  915. Fill100!
  916.  
  917. Fill20!
  918.  
  919. Fill30!
  920.  
  921. Fill40!
  922.  
  923. Fill50!
  924.  
  925. Fill60!
  926.  
  927. Fill70!
  928.  
  929. Fill80!
  930.  
  931. Fill90!
  932.  
  933. FillButton!
  934.  
  935. NoFill!    10
  936.  
  937. 100
  938.  
  939. 20
  940.  
  941. 30
  942.  
  943. 40
  944.  
  945. 50
  946.  
  947. 60
  948.  
  949. 70
  950.  
  951. 80
  952.  
  953. 90
  954.  
  955. 0
  956.  
  957. 127
  958.  
  959. FromLibrary: enumeration    CurrentDocument!
  960.  
  961. PersonalLibrary!
  962.  
  963. SharedLibrary!    N/A
  964.  
  965. ToLibrary: enumeration    CurrentDocument!
  966.  
  967. PersonalLibrary!
  968.  
  969. SharedLibrary!    N/A
  970.  
  971. DestName: string(optional)    Rename a copied fill style.    N/A
  972.  
  973. FillStyleCreate
  974.  
  975. Syntax
  976.  
  977. FillStyleCreate(TemplateName As String, Library As _FillStyleCreate_Library_enum)
  978.  
  979. Description
  980.  
  981. Create a fill style.
  982.  
  983. Parameters
  984.  
  985. TemplateName: string    The name for the template.
  986.  
  987. Library: enumeration    CurrentDoc!
  988.  
  989. PersonalLibrary!
  990.  
  991. SharedLibrary!
  992.  
  993. FillStyleDelete
  994.  
  995. Syntax
  996.  
  997. FillStyleDelete(StyleName, [Library As _FillStyleDelete_Library_enum])
  998.  
  999. Description
  1000.  
  1001. Delete a fill style. You must pass the numeric value that corresponds to the StyleName.
  1002.  
  1003. Parameters
  1004.  
  1005. StyleName: any    Fill10!
  1006.  
  1007. Fill100!
  1008.  
  1009. Fill20!
  1010.  
  1011. Fill30!
  1012.  
  1013. Fill40!
  1014.  
  1015. Fill50!
  1016.  
  1017. Fill60!
  1018.  
  1019. Fill70!
  1020.  
  1021. Fill80!
  1022.  
  1023. Fill90!
  1024.  
  1025. FillButton!
  1026.  
  1027. NoFill!    10
  1028.  
  1029. 100
  1030.  
  1031. 20
  1032.  
  1033. 30
  1034.  
  1035. 40
  1036.  
  1037. 50
  1038.  
  1039. 60
  1040.  
  1041. 70
  1042.  
  1043. 80
  1044.  
  1045. 90
  1046.  
  1047. 0
  1048.  
  1049. 127
  1050.  
  1051. Library: enumeration (optional)    CurrentDoc!
  1052.  
  1053. PersonalLibrary!
  1054.  
  1055. SharedLibrary!    
  1056.  
  1057. FillStyleEdit
  1058.  
  1059. Syntax
  1060.  
  1061. FillStyleEdit(Style, [Library As _FillStyleEdit_Library_enum])
  1062.  
  1063. Description
  1064.  
  1065. Begin a FillStyleEdit()-FillStyleEnd() statement.
  1066.  
  1067. Parameters
  1068.  
  1069. StyleName: any    Fill10!
  1070.  
  1071. Fill100!
  1072.  
  1073. Fill20!
  1074.  
  1075. Fill30!
  1076.  
  1077. Fill40!
  1078.  
  1079. Fill50!
  1080.  
  1081. Fill60!
  1082.  
  1083. Fill70!
  1084.  
  1085. Fill80!
  1086.  
  1087. Fill90!
  1088.  
  1089. FillButton!
  1090.  
  1091. NoFill!    10
  1092.  
  1093. 100
  1094.  
  1095. 20
  1096.  
  1097. 30
  1098.  
  1099. 40
  1100.  
  1101. 50
  1102.  
  1103. 60
  1104.  
  1105. 70
  1106.  
  1107. 80
  1108.  
  1109. 90
  1110.  
  1111. 0
  1112.  
  1113. 127
  1114.  
  1115. Library: enumeration (optional)    CurrentDoc!
  1116.  
  1117. PersonalLibrary!
  1118.  
  1119. SharedLibrary!    
  1120.  
  1121. FillStyleEnd
  1122.  
  1123. Syntax
  1124.  
  1125. FillStyleEnd(State As _FillStyleEnd_State_enum)
  1126.  
  1127. Description
  1128.  
  1129. Save or cancel changes to a fill style.
  1130.  
  1131. Parameters
  1132.  
  1133. State: enumeration    Cancel!
  1134.  
  1135. Save!    0
  1136.  
  1137. 1
  1138.  
  1139. FillStyleName
  1140.  
  1141. Syntax
  1142.  
  1143. FillStyleEdit(Style, [Library As _FillStyleEdit_Library_enum])
  1144.  
  1145. Description
  1146.  
  1147. Name a user-created fill style. Precede with FillStyleEdit() and end with FillStyleEnd().
  1148.  
  1149. Parameters
  1150.  
  1151. FillName: string    The name of the new fill style.
  1152.  
  1153. FillStyleRetrieve
  1154.  
  1155. Syntax
  1156.  
  1157. FillStyleRetrieve(Filename As String, Library As _FillStyleRetrieve_Library_enum)
  1158.  
  1159. Description
  1160.  
  1161. Retrieve all fill graphics styles from the specified document or template and add to the specified style list.
  1162.  
  1163. Parameters
  1164.  
  1165. Filename: string    The path and filename of a document or template containing the styles to retrieve.
  1166.  
  1167. Library: enumeration    The destination for the retrieved styles. Use CurrentDoc! to add the styles to the current document style list. Use PersonalLibrary! to add the styles to the default template style list. Use SharedLibrary! to add the styles to the additional objects template style list. If an additional objects template is not specified in Files Preferences, and SharedLibrary! is used here, the method does nothing.
  1168.  
  1169. CurrentDoc!
  1170.  
  1171. PersonalLibrary!
  1172.  
  1173. SharedLibrary!
  1174.  
  1175. FillStyleSave
  1176.  
  1177. Syntax
  1178.  
  1179.  FillStyleSave(Filename As String, Library As _FillStyleSave_Library_enum)
  1180.  
  1181. Description
  1182.  
  1183. Save a fill style.
  1184.  
  1185. Parameters
  1186.  
  1187. Filename: string    The name for the fill style.
  1188.  
  1189. Library: enumeration    CurrentDoc!
  1190.  
  1191. PersonalLibrary!
  1192.  
  1193. SharedLibrary!
  1194.  
  1195. FindDlg
  1196.  
  1197. Syntax
  1198.  
  1199. FindDlg()
  1200.  
  1201. Description
  1202.  
  1203. Display the Find and Replace Text dialog box.
  1204.  
  1205. FirstLineIndent
  1206.  
  1207. Syntax
  1208.  
  1209. FirstLineIndent(Width As Integer)
  1210.  
  1211. Description
  1212.  
  1213. Specify the distance between the left margin and the first word of indented text.
  1214.  
  1215. Parameters
  1216.  
  1217. Width: measurement    The length of the indention.
  1218.  
  1219. FloatingCellBegin
  1220.  
  1221. Syntax
  1222.  
  1223. FloatingCellBegin()
  1224.  
  1225. Description
  1226.  
  1227. Move the insertion point in a floating cell to the beginning of the cell.
  1228.  
  1229. FloatingCellCreate
  1230.  
  1231. Syntax
  1232.  
  1233.  FloatingCellCreate()
  1234.  
  1235. Description
  1236.  
  1237. Create a floating cell.
  1238.  
  1239. FloatingCellEdit
  1240.  
  1241. Syntax
  1242.  
  1243. FloatingCellEdit()
  1244.  
  1245. Description
  1246.  
  1247. Search backward for a floating cell and move the insertion point to the beginning of the first one found. If not found searching backward, the search continues from the insertion point forward.
  1248.  
  1249. FloatingCellEnd
  1250.  
  1251. Syntax
  1252.  
  1253. FloatingCellEnd()
  1254.  
  1255. Description
  1256.  
  1257. Move the insertion point in a floating cell to the end of the cell.
  1258.  
  1259. FloatingCellFormula
  1260.  
  1261. Syntax
  1262.  
  1263. FloatingCellFormula(Formula As String)
  1264.  
  1265. Description
  1266.  
  1267. Specify a floating-cell formula. Precede with FloatingCellCreate() or FloatingCellEdit().
  1268.  
  1269. Parameters
  1270.  
  1271. Formula: string    The floating cell formula.
  1272.  
  1273. FloatingCellNumAlignCurrency
  1274.  
  1275. Syntax
  1276.  
  1277. FloatingCellNumAlignCurrency(Align As _FloatingCellNumAlignCurrency_Align_enum)
  1278.  
  1279. Description
  1280.  
  1281. Align the currency symbols in a floating cell. Precede with FloatingCellCreate() or FloatingCellEdit().
  1282.  
  1283. Parameters
  1284.  
  1285. Align: enumeration    No!
  1286.  
  1287. Yes!
  1288.  
  1289. FloatingCellNumberDateFormat
  1290.  
  1291. Syntax
  1292.  
  1293. FloatingCellNumberDateFormat(Format As Integer)
  1294.  
  1295. Description
  1296.  
  1297. Specify a floating-cell date format.
  1298.  
  1299. Parameters
  1300.  
  1301. Format: numeric    1 March 5, 1993
  1302.  
  1303. 2 3/5/93
  1304.  
  1305. 3 Mar 5, 1993
  1306.  
  1307. 4 5 March 1993
  1308.  
  1309. 5 Friday, March 5, 1993
  1310.  
  1311. 6 4:18 pm
  1312.  
  1313. 7 05Mar93
  1314.  
  1315. 8 March 5, 1993 (4:18pm)
  1316.  
  1317. 9 1993-03-05
  1318.  
  1319. 10 3/05
  1320.  
  1321. 11 Mar 05
  1322.  
  1323. 12 04:18:53 (hh:mm:ss)
  1324.  
  1325. FloatingCellNumberDecDigits
  1326.  
  1327. Syntax
  1328.  
  1329. FloatingCellNumberDecDigits(Number As Integer)
  1330.  
  1331. Description
  1332.  
  1333. Specify the number of digits after the decimal point in a floating cell. The insertion point must be between floating cell codes (Flt Cell).
  1334.  
  1335. Parameters
  1336.  
  1337. Number: numeric    The number of decimal places after the decimal point.
  1338.  
  1339. FloatingCellNumberFormat
  1340.  
  1341. Syntax
  1342.  
  1343. FloatingCellNumberFormat(CellNumType As _FloatingCellNumberFormat_CellNumType_enum)
  1344.  
  1345. Description
  1346.  
  1347. Specify a number type for floating cells.
  1348.  
  1349. Parameters
  1350.  
  1351. CellNumType: enumeration    Accounting!
  1352.  
  1353. Commas!
  1354.  
  1355. Currency!
  1356.  
  1357. DateFormat!
  1358.  
  1359. Fixed2!
  1360.  
  1361. General!
  1362.  
  1363. Integer!
  1364.  
  1365. Percent!
  1366.  
  1367. Scientific!
  1368.  
  1369. TextOnly!
  1370.  
  1371. FloatingCellNumberNegNumber
  1372.  
  1373. Syntax
  1374.  
  1375. FloatingCellNumberNegNumber(NegDisplay As _FloatingCellNumberNegNumber_NegDisplay_enum)
  1376.  
  1377. Description
  1378.  
  1379. Specify how to display negative numbers in a floating cell.
  1380.  
  1381. Parameters
  1382.  
  1383. NegDisplay: enumeration    CRDR!
  1384.  
  1385. Minus!
  1386.  
  1387. Parentheses!
  1388.  
  1389. FloatingCellNumberRound
  1390.  
  1391. Syntax
  1392.  
  1393. FloatingCellNumberRound(Round As _FloatingCellNumberRound_Round_enum)
  1394.  
  1395. Description
  1396.  
  1397. Round numbers for calculation in a floating cell.
  1398.  
  1399. Parameters
  1400.  
  1401. Round: enumeration    No!
  1402.  
  1403. Yes!
  1404.  
  1405. FloatingCellNumberUseCommas
  1406.  
  1407. Syntax
  1408.  
  1409. FloatingCellNumberUseCommas(Commas As _FloatingCellNumberUseCommas_Commas_enum)
  1410.  
  1411. Description
  1412.  
  1413. Use commas in floating-cell numbers.
  1414.  
  1415. Parameters
  1416.  
  1417. Commas: enumeration    No!
  1418.  
  1419. Yes!
  1420.  
  1421. FloatingCellNumberUseCurrency
  1422.  
  1423. Syntax
  1424.  
  1425.  FloatingCellNumberUseCurrency(Currency As _FloatingCellNumberUseCurrency_Currency_enum)
  1426.  
  1427. Description
  1428.  
  1429. Use currency symbols in a floating cell.
  1430.  
  1431. Parameters
  1432.  
  1433. Currency: enumeration    No!
  1434.  
  1435. Yes!
  1436.  
  1437. FloatingCellNumSelectCurrency
  1438.  
  1439. Syntax
  1440.  
  1441. FloatingCellNumSelectCurrency(IntlCurrency As _FloatingCellNumSelectCurrency_IntlCurrency_enum)
  1442.  
  1443. Description
  1444.  
  1445. Specify a currency symbol for floating cells.
  1446.  
  1447. Parameters
  1448.  
  1449. IntlCurrency: enumeration    Austria!
  1450.  
  1451. Belgium!
  1452.  
  1453. BelgiumFrench!
  1454.  
  1455. Brazil!
  1456.  
  1457. Canada!
  1458.  
  1459. China!
  1460.  
  1461. Croatia!
  1462.  
  1463. CzechRepublic!
  1464.  
  1465. DefaultCurrency!
  1466.  
  1467. Denmark!
  1468.  
  1469. Dollar!
  1470.  
  1471. Ecuador!
  1472.  
  1473. ElSalvador!
  1474.  
  1475. Euro!
  1476.  
  1477. Finland!
  1478.  
  1479. FinlandIntl!
  1480.  
  1481. France!
  1482.  
  1483. FrenchCanada!
  1484.  
  1485. Germany!
  1486.  
  1487. Greece!
  1488.  
  1489. Guatemala!
  1490.  
  1491. Honduras!
  1492.  
  1493. HongKong!
  1494.  
  1495. Hungary!
  1496.  
  1497. Iceland!
  1498.  
  1499. Israel!
  1500.  
  1501. Italy!
  1502.  
  1503. Japan!
  1504.  
  1505. Korea!
  1506.  
  1507. Netherlands!
  1508.  
  1509. Norway!
  1510.  
  1511. NorwayIntl!
  1512.  
  1513. Paraguay!
  1514.  
  1515. Peseta!
  1516.  
  1517. Peso!
  1518.  
  1519. Poland!
  1520.  
  1521. Portugal!
  1522.  
  1523. Ruble!
  1524.  
  1525. RussianRuble!
  1526.  
  1527. Singapore!
  1528.  
  1529. SlovakRepublic!
  1530.  
  1531. Slovenia!
  1532.  
  1533. SouthAfrica!
  1534.  
  1535. Sweden!
  1536.  
  1537. Switzerland!
  1538.  
  1539. Taiwan!
  1540.  
  1541. Turkey!
  1542.  
  1543. UnitedKingdom!
  1544.  
  1545. Venezuela! 
  1546.  
  1547. FlushRight
  1548.  
  1549. Syntax
  1550.  
  1551. FlushRight()
  1552.  
  1553. Description
  1554.  
  1555. Align text at the right margin.
  1556.  
  1557. FlushRightWithDotLeaders
  1558.  
  1559. Syntax
  1560.  
  1561. FlushRightWithDotLeaders()
  1562.  
  1563. Description
  1564.  
  1565. Right justify a line of text with dot leaders.
  1566.  
  1567. Font
  1568.  
  1569. Syntax
  1570.  
  1571. Font(Name As String, [Family As _Font_Family_enum], [Attributes As _Font_Attributes_enum], [Weight As _Font_Weight_enum], [Width As _Font_Width_enum], [Source As _Font_Source_enum], [Type As _Font_Type_enum], [CharacterSet As _Font_CharacterSet_enum])
  1572.  
  1573. Description
  1574.  
  1575. Specify font options.
  1576.  
  1577. Parameters
  1578.  
  1579. Name: string    The name of the font.
  1580.  
  1581. Family: enumeration (optional)    FamilyAestheticOrnamented!
  1582.  
  1583. FamilyAlbertus!
  1584.  
  1585. FamilyBodon!
  1586.  
  1587. FamilyBroadway!
  1588.  
  1589. FamilyBrush!
  1590.  
  1591. FamilyCenturySchoolbook!
  1592.  
  1593. FamilyComputer!
  1594.  
  1595. FamilyCourier!
  1596.  
  1597. FamilyHelvetica!
  1598.  
  1599. FamilyHobo!
  1600.  
  1601. FamilyITCBenguiat!
  1602.  
  1603. FamilyITCGaramond!
  1604.  
  1605. FamilyITCLubalinGraph!
  1606.  
  1607. FamilyITCRonda!
  1608.  
  1609. FamilyITCZapfDingbats!
  1610.  
  1611. FamilyLetterGothic!
  1612.  
  1613. FamilyMadrone!
  1614.  
  1615. FamilyMicrostyle!
  1616.  
  1617. FamilyOldEnglish!
  1618.  
  1619. FamilyOptima!
  1620.  
  1621. FamilyParkAvenue!
  1622.  
  1623. FamilyPonderosa!
  1624.  
  1625. FamilyPTBarnum!
  1626.  
  1627. FamilyRevue!
  1628.  
  1629. FamilySignetRoundhand!
  1630.  
  1631. FamilyTekton!
  1632.  
  1633. FamilyTimesRoman!
  1634.  
  1635. FamilyUncial! 
  1636.  
  1637. Attributes: enumeration (optional)    FontMatchItalic!
  1638.  
  1639. FontMatchNormal!
  1640.  
  1641. FontMatchOutline!
  1642.  
  1643. FontMatchShadow!
  1644.  
  1645. FontMatchSmallCaps!
  1646.  
  1647. Weight: enumeration (optional)    WeightBlack!
  1648.  
  1649. WeightBold!
  1650.  
  1651. WeightBook!
  1652.  
  1653. WeightDemiBold!
  1654.  
  1655. WeightDemiLight!
  1656.  
  1657. WeightExtraBlack!
  1658.  
  1659. WeightExtraBold!
  1660.  
  1661. WeightExtraHeavy!
  1662.  
  1663. WeightExtraLight!
  1664.  
  1665. WeightExtraThin!
  1666.  
  1667. WeightHeavy!
  1668.  
  1669. WeightLight!
  1670.  
  1671. WeightMaximum!
  1672.  
  1673. WeightMedium!
  1674.  
  1675. WeightRegular!
  1676.  
  1677. WeightRoman!
  1678.  
  1679. WeightSemiBold!
  1680.  
  1681. WeightSemiLight!
  1682.  
  1683. WeightThin!
  1684.  
  1685. WeightUltraBlack!
  1686.  
  1687. WeightUltraHeavy!
  1688.  
  1689. WeightUltraLight!
  1690.  
  1691. WeightUltraThin!
  1692.  
  1693. WeightUnknown!
  1694.  
  1695. Width: enumeration (optional)    WidthCompressed!
  1696.  
  1697. WidthCondensed!
  1698.  
  1699. WidthDoubleWide!
  1700.  
  1701. WidthExpanded!
  1702.  
  1703. WidthExtraCondensed!
  1704.  
  1705. WidthExtraExpanded!
  1706.  
  1707. WidthNormal!
  1708.  
  1709. WidthSemiCondensed!
  1710.  
  1711. WidthSemiExpanded!
  1712.  
  1713. WidthTripleWide!
  1714.  
  1715. WidthUltraCompressed!
  1716.  
  1717. WidthUltraCondensed!
  1718.  
  1719. WidthUltraExpanded!
  1720.  
  1721. WidthUnknown!
  1722.  
  1723. Source: enumeration (optional)    DRSFile!
  1724.  
  1725. PRSFile!
  1726.  
  1727. Type: enumeration (optional)    Intellifont!
  1728.  
  1729. Speedo!
  1730.  
  1731. TrueType!
  1732.  
  1733. Type1!
  1734.  
  1735. CharacterSet: enumeration (optional)    FontMatchArabic!
  1736.  
  1737. FontMatchArabicScript!
  1738.  
  1739. FontMatchASCII!
  1740.  
  1741. FontMatchBoxDrawing!
  1742.  
  1743. FontMatchCyrillic!
  1744.  
  1745. FontMatchGreek!
  1746.  
  1747. FontMatchHebrew!
  1748.  
  1749. FontMatchIconicSymbols!
  1750.  
  1751. FontMatchJapaneseKana!
  1752.  
  1753. FontMatchMath!
  1754.  
  1755. FontMatchMathExtension!
  1756.  
  1757. FontMatchMultinational1!
  1758.  
  1759. FontMatchMultinational2!
  1760.  
  1761. FontMatchTypographicSymbols!
  1762.  
  1763. FontMatchUserDefined!
  1764.  
  1765. FontDlg
  1766.  
  1767. Syntax
  1768.  
  1769. FontDlg()
  1770.  
  1771. Description
  1772.  
  1773. Display the Font dialog box.
  1774.  
  1775. FontDnShippingMacro
  1776.  
  1777. Syntax
  1778.  
  1779. FontDnShippingMacro()
  1780.  
  1781. Description
  1782.  
  1783. Play the shipping macro FONTDN.WCM to reduce the font size of the selected text by two points. FONTDN.WCM must be installed.
  1784.  
  1785. FontDoubleUnderlineToggle
  1786.  
  1787. Syntax
  1788.  
  1789. FontDoubleUnderlineToggle()
  1790.  
  1791. Description
  1792.  
  1793. Toggle Double Underline at the insertion point.
  1794.  
  1795. FontExtraLargeToggle
  1796.  
  1797. Syntax
  1798.  
  1799. FontExtraLargeToggle()
  1800.  
  1801. Description
  1802.  
  1803. Toggle Extra Large at the insertion point.
  1804.  
  1805. FontFineToggle
  1806.  
  1807. Syntax
  1808.  
  1809. FontFineToggle()
  1810.  
  1811. Description
  1812.  
  1813. Toggle Fine at the insertion point. Recordable substitute: AttributeRelativeSizeToggle.
  1814.  
  1815. FontHiddenToggle
  1816.  
  1817. Syntax
  1818.  
  1819. FontHiddenToggle()
  1820.  
  1821. Description
  1822.  
  1823. Toggle Hidden at the insertion point.
  1824.  
  1825. FontItalicToggle
  1826.  
  1827. Syntax
  1828.  
  1829. FontItalicToggle()
  1830.  
  1831. Description
  1832.  
  1833. Toggle Italic at the insertion point.
  1834.  
  1835. FontLargeToggle
  1836.  
  1837. Syntax
  1838.  
  1839. FontLargeToggle()
  1840.  
  1841. Description
  1842.  
  1843. Toggle Large at the insertion point.
  1844.  
  1845. FontOutlineToggle
  1846.  
  1847. Syntax
  1848.  
  1849. FontOutlineToggle()
  1850.  
  1851. Description
  1852.  
  1853. Toggle the Outline font attribute at the insertion point.
  1854.  
  1855. FontRedlineToggle
  1856.  
  1857. Syntax
  1858.  
  1859. FontRedlineToggle()
  1860.  
  1861. Description
  1862.  
  1863. Toggle Redline at the insertion point.
  1864.  
  1865. FontShadowToggle
  1866.  
  1867. Syntax
  1868.  
  1869. FontShadowToggle()
  1870.  
  1871. Description
  1872.  
  1873. Toggle Shadow at the insertion point.
  1874.  
  1875. FontSize
  1876.  
  1877. Syntax
  1878.  
  1879.  FontSize(FontSize As Integer)
  1880.  
  1881. Description
  1882.  
  1883. Specify the size of a selected font at the insertion point.
  1884.  
  1885. Parameters
  1886.  
  1887. FontSize: measurement    
  1888.  
  1889. FontSmallCapsToggle
  1890.  
  1891. Syntax
  1892.  
  1893. FontSmallCapsToggle()
  1894.  
  1895. Description
  1896.  
  1897. Toggle Small Caps at the insertion point.
  1898.  
  1899. FontSmallToggle
  1900.  
  1901. Syntax
  1902.  
  1903. FontSmallToggle()
  1904.  
  1905. Description
  1906.  
  1907. Toggle Small at the insertion point.
  1908.  
  1909. FontStrikeoutToggle
  1910.  
  1911. Syntax
  1912.  
  1913. FontStrikeoutToggle()
  1914.  
  1915. Description
  1916.  
  1917. Toggle Strikeout at the insertion point.
  1918.  
  1919. FontSubscriptToggle
  1920.  
  1921. Syntax
  1922.  
  1923. FontSubscriptToggle()
  1924.  
  1925. Description
  1926.  
  1927. Toggle Subscript at the insertion point.
  1928.  
  1929. FontSuperscriptToggle
  1930.  
  1931. Syntax
  1932.  
  1933. FontSuperscriptToggle()
  1934.  
  1935. Description
  1936.  
  1937. Toggle Superscript at the insertion point.
  1938.  
  1939. FontUnderlineToggle
  1940.  
  1941. Syntax
  1942.  
  1943. FontUnderlineToggle()
  1944.  
  1945. Description
  1946.  
  1947. Toggle Underline at the insertion point.
  1948.  
  1949. FontUpShippingMacro
  1950.  
  1951. Syntax
  1952.  
  1953. FontUpShippingMacro()
  1954.  
  1955. Description
  1956.  
  1957. Play the shipping macro FONTUP.WCM to increase the font size of the selected text by two points. FONTUP.WCM must be installed.
  1958.  
  1959. FontVeryLargeToggle
  1960.  
  1961. Syntax
  1962.  
  1963. FontVeryLargeToggle()
  1964.  
  1965. Description
  1966.  
  1967. Toggle Very Large at the insertion point.
  1968.  
  1969. FooterA
  1970.  
  1971. Syntax
  1972.  
  1973. FooterA(Action As _FooterA_Action_enum, [Occurrence As _FooterA_Occurrence_enum])
  1974.  
  1975. Description
  1976.  
  1977. Create, edit, or discontinue Footer A, and specify footer position.
  1978.  
  1979. Parameters
  1980.  
  1981. Action: enumeration    Create!
  1982.  
  1983. Edit!
  1984.  
  1985. Off!
  1986.  
  1987. Occurrence: enumeration (optional)    AllPages!
  1988.  
  1989. EvenPages!
  1990.  
  1991. NoPages!
  1992.  
  1993. OddPages!
  1994.  
  1995. FooterB
  1996.  
  1997. Syntax
  1998.  
  1999. FooterB(Action As _FooterB_Action_enum, [Occurrence As _FooterB_Occurrence_enum])
  2000.  
  2001. Description
  2002.  
  2003. Create, edit, or discontinue Footer B, and specify footer position.
  2004.  
  2005. Parameters
  2006.  
  2007. Action: enumeration    Create!
  2008.  
  2009. Edit!
  2010.  
  2011. Off!
  2012.  
  2013. Occurrence: enumeration (optional)    AllPages!
  2014.  
  2015. EvenPages!
  2016.  
  2017. NoPages!
  2018.  
  2019. OddPages!
  2020.  
  2021. FooterSeparationDistance
  2022.  
  2023. Syntax
  2024.  
  2025. FooterSeparationDistance(Distance As Integer)
  2026.  
  2027. Description
  2028.  
  2029. Specify the distance between text and footers.
  2030.  
  2031. Parameters
  2032.  
  2033. Distance: measurement    Default: .167".
  2034.  
  2035. FootnoteContinuedMessage
  2036.  
  2037. Syntax
  2038.  
  2039. FootnoteContinuedMessage(State As _FootnoteContinuedMessage_State_enum)
  2040.  
  2041. Description
  2042.  
  2043. Print "(continued...)" when a footnote continues on the next page.
  2044.  
  2045. Parameters
  2046.  
  2047. State: enumeration    No!
  2048.  
  2049. Yes!
  2050.  
  2051. FootnoteCreate
  2052.  
  2053. Syntax
  2054.  
  2055. FootnoteCreate()
  2056.  
  2057. Description
  2058.  
  2059. Open a footnote window, in order to create a footnote. Subsequent methods insert text and codes. SubstructureExit closes the window and places a reference to the footnote at the insertion point.
  2060.  
  2061. FootnoteEdit
  2062.  
  2063. Syntax
  2064.  
  2065. FootnoteEdit([FootnoteNumber As String])
  2066.  
  2067. Description
  2068.  
  2069. Open a specified footnote window in order to edit the footnote. Subsequent methods apply to the footnote window until SubstructureExit.
  2070.  
  2071. Parameters
  2072.  
  2073. FootnoteNumber: string (optional)    Footnotes can be numbered with arabic numerals, roman numerals, or letters.
  2074.  
  2075. FootnoteEditDlg
  2076.  
  2077. Syntax
  2078.  
  2079. FootnoteEditDlg()
  2080.  
  2081. Description
  2082.  
  2083. Display the Edit Footnote dialog box.
  2084.  
  2085. FootnoteEndnoteDlg
  2086.  
  2087. Syntax
  2088.  
  2089. FootnoteEndnoteDlg()
  2090.  
  2091. Description
  2092.  
  2093. Display the Footnote/Endnote dialog box.
  2094.  
  2095. FootnoteMinimum
  2096.  
  2097. Syntax
  2098.  
  2099. FootnoteMinimum([Width As Integer]) As Integer
  2100.  
  2101. Description
  2102.  
  2103. Specify the amount of footnote text to keep together on a page.
  2104.  
  2105. Parameters
  2106.  
  2107. Width: measurement    The space available for footnotes on a page.
  2108.  
  2109. FootnoteNewNumber
  2110.  
  2111. Syntax
  2112.  
  2113. FootnoteNewNumber(FootnoteNumber As String)
  2114.  
  2115. Description
  2116.  
  2117. Specify a new footnote number, and increment subsequent footnotes from that number.
  2118.  
  2119. Parameters
  2120.  
  2121. FootnoteNumber: string    The starting footnote number.
  2122.  
  2123. FootnoteNewNumberDlg
  2124.  
  2125. Syntax
  2126.  
  2127. FootnoteNewNumberDlg()
  2128.  
  2129. Description
  2130.  
  2131. Display the Footnote Number dialog box.
  2132.  
  2133. FootnoteNumberDecrement
  2134.  
  2135. Syntax
  2136.  
  2137. FootnoteNumberDecrement()
  2138.  
  2139. Description
  2140.  
  2141. Decrease the last footnote number by one.
  2142.  
  2143. FootnoteNumberDisplay
  2144.  
  2145. Syntax
  2146.  
  2147. FootnoteNumberDisplay()
  2148.  
  2149. Description
  2150.  
  2151. Insert the current footnote number at the insertion point. This is a 0-based index. Therefore the value of the first footnote is 0.
  2152.  
  2153. FootnoteNumberIncrement
  2154.  
  2155. Syntax
  2156.  
  2157. FootnoteNumberIncrement()
  2158.  
  2159. Description
  2160.  
  2161. Increase the last footnote number by one.
  2162.  
  2163. FootnoteNumberMethod
  2164.  
  2165. Syntax
  2166.  
  2167. FootnoteNumberMethod(NumberingMethod As _FootnoteNumberMethod_NumberingMethod_enum, [Character As String])
  2168.  
  2169. Description
  2170.  
  2171. Specify a footnote numbering method.
  2172.  
  2173. Parameters
  2174.  
  2175. NumberingMethod: enumeration    Characters!
  2176.  
  2177. LowerLetters!
  2178.  
  2179. LowerRoman!
  2180.  
  2181. Numbers!
  2182.  
  2183. UpperLetters!
  2184.  
  2185. UpperRoman!
  2186.  
  2187. Character: string (optional)    Use up to five characters when the numbering method is Characters!.
  2188.  
  2189. FootnoteOptions
  2190.  
  2191. Syntax
  2192.  
  2193. FootnoteOptions([NumberingMethod As _FootnoteOptions_NumberingMethod_enum], [Characters As String], [BetweenSpacing As Integer], [MinimumHeight As Integer], [Restart As _FootnoteOptions_Restart_enum], [PrintContinued As _FootnoteOptions_PrintContinued_enum], [FootnotePosition As _FootnoteOptions_FootnotePosition_enum], [Separator As _FootnoteOptions_Separator_enum])
  2194.  
  2195. Description
  2196.  
  2197. Specify the footnote options from the insertion point forward.
  2198.  
  2199. Parameters
  2200.  
  2201. NumberingMethod: enumeration (optional)    Characters!
  2202.  
  2203. LowerLetters!
  2204.  
  2205. LowerRoman!
  2206.  
  2207. Numbers!
  2208.  
  2209. UpperLetters!
  2210.  
  2211. UpperRoman!
  2212.  
  2213. Characters: string (optional)    Use up to five characters when the numbering method is Characters!.
  2214.  
  2215. BetweenSpacing: measurement (optional)    The amount of space between footnotes.
  2216.  
  2217. MinimumHeight: measurement (optional)    How much of a footnote to keep together on a page.
  2218.  
  2219. Restart: enumeration (optional)    Restart the footnote numbers on every page.
  2220.  
  2221. Off!
  2222.  
  2223. On!
  2224.  
  2225. PrintContinued: enumeration (optional)    Print "(continued)..." on the last footnote line of the first page and "...(continued)" on the first footnote line of the next page.
  2226.  
  2227. No!
  2228.  
  2229. Yes!
  2230.  
  2231. FootnotePosition: enumeration (optional)    AfterText!
  2232.  
  2233. BottomOfPage!
  2234.  
  2235. Separator: enumeration (optional)    MarginToMargin!
  2236.  
  2237. NoLine!
  2238.  
  2239. ShortLine!
  2240.  
  2241. FootnoteOptionsDlg
  2242.  
  2243. Syntax
  2244.  
  2245. FootnoteOptionsDlg()
  2246.  
  2247. Description
  2248.  
  2249. Display the Advanced Footnote Options dialog box.
  2250.  
  2251. FootnotePosition
  2252.  
  2253. Syntax
  2254.  
  2255.  FootnotePosition(Position As _FootnotePosition_Position_enum)
  2256.  
  2257. Description
  2258.  
  2259. Print footnotes at the bottom of the page or just below the last line of text.
  2260.  
  2261. Parameters
  2262.  
  2263. Position: enumeration    AfterText!
  2264.  
  2265. BottomOfPage!
  2266.  
  2267. FootnoteRestartEachPage
  2268.  
  2269. Syntax
  2270.  
  2271.  FootnoteRestartEachPage(State As _FootnoteRestartEachPage_State_enum)
  2272.  
  2273. Description
  2274.  
  2275. Restart the footnote numbering on each page.
  2276.  
  2277. Parameters
  2278.  
  2279. State: enumeration    No!
  2280.  
  2281. Yes!
  2282.  
  2283. FootnoteSeparatorLine
  2284.  
  2285. Syntax
  2286.  
  2287. FootnoteSeparatorLine(Style, SpaceAboveLine As Integer, SpaceBelowLine As Integer, Alignment As _FootnoteSeparatorLine_Alignment_enum, [Width As Integer], [Position As Integer])
  2288.  
  2289. Description
  2290.  
  2291. Specify a separator line between text and footnotes.
  2292.  
  2293. Parameters
  2294.  
  2295. Style: any    ButtonBottomRightLine!
  2296.  
  2297. ButtonTopLeftLine!
  2298.  
  2299. DashedLine!
  2300.  
  2301. DottedLine!
  2302.  
  2303. DoubleLine!
  2304.  
  2305. ExtraThickLine!
  2306.  
  2307. HeavyDoubleLine!
  2308.  
  2309. HeavySingleLine!
  2310.  
  2311. NoLine!
  2312.  
  2313. SingleLine!
  2314.  
  2315. TableDefaultLine!
  2316.  
  2317. ThickLine!
  2318.  
  2319. ThickThinLine!
  2320.  
  2321. ThinThickLine!    9
  2322.  
  2323. 8
  2324.  
  2325. 2
  2326.  
  2327. 3
  2328.  
  2329. 1
  2330.  
  2331. 5
  2332.  
  2333. 11
  2334.  
  2335. 10
  2336.  
  2337. 127
  2338.  
  2339. 0
  2340.  
  2341. 126
  2342.  
  2343. 4
  2344.  
  2345. 7
  2346.  
  2347. 6
  2348.  
  2349. SpaceAboveLine: measurement    The space between the separator line and the last line of text.    
  2350.  
  2351. SpaceBelowLine: measurement    The space between the separator line and the first footnote.    
  2352.  
  2353. Alignment: enumeration    Center!
  2354.  
  2355. Full!
  2356.  
  2357. Left!
  2358.  
  2359. Right!
  2360.  
  2361. SetPosition!    
  2362.  
  2363. Width: measurement (optional)    The separator line width.    
  2364.  
  2365. Position: measurement (optional)    The distance of a separator line from the left edge of the page.    
  2366.  
  2367. FootnoteSpaceBetween
  2368.  
  2369. Syntax
  2370.  
  2371. FootnoteSpaceBetween([Space As Integer]) As Integer
  2372.  
  2373. Description
  2374.  
  2375. Specify the amount of blank space between footnotes.
  2376.  
  2377. Parameters
  2378.  
  2379. Space: measurement    Default: .167".
  2380.  
  2381. FootnoteToEndnoteShippingMacro
  2382.  
  2383. Syntax
  2384.  
  2385. FootnoteToEndnoteShippingMacro()
  2386.  
  2387. Description
  2388.  
  2389. Play the shipping macro FOOTEND.WCM, which converts footnotes to endnotes in the current document or selected text. FOOTEND.WCM must be installed.
  2390.  
  2391. ForcePage
  2392.  
  2393. Syntax
  2394.  
  2395. ForcePage(EvenOddNew As _ForcePage_EvenOddNew_enum)
  2396.  
  2397. Description
  2398.  
  2399. Force a page break or specify that a certain page always has an odd or even number.
  2400.  
  2401. Parameters
  2402.  
  2403. EvenOddNew: enumeration    Even!
  2404.  
  2405. New!
  2406.  
  2407. Odd!
  2408.  
  2409. ForcePageDlg
  2410.  
  2411. Syntax
  2412.  
  2413. ForcePageDlg()
  2414.  
  2415. Description
  2416.  
  2417. Display the Force Page dialog box.
  2418.  
  2419. FormatMarginsDlg
  2420.  
  2421. Syntax
  2422.  
  2423. FormatMarginsDlg()
  2424.  
  2425. Description
  2426.  
  2427. Display the Margins dialog box.
  2428.  
  2429.  
  2430.  
  2431.  
  2432.  
  2433.  
  2434.