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

  1. AbbreviationCreate
  2.  
  3. Syntax
  4.  
  5. AbbreviationCreate(AbbreviationName As String, [Template As _AbbreviationCreate_Template_enum], [Text As String])
  6.  
  7. Description
  8.  
  9. Create an abbreviation.
  10.  
  11. Parameters
  12.  
  13. AbbreviationName: string    Template: enumeration(optional)
  14.  
  15. CurrentDoc!
  16.  
  17. PersonalLibrary!
  18.  
  19. QuickWords!
  20.  
  21. SharedLibrary!
  22.  
  23. Text: string(optional)    
  24.  
  25. AbbreviationDelete
  26.  
  27. Syntax
  28.  
  29. AbbreviationDelete(AbbreviationName As String, [Template As _AbbreviationDelete_Template_enum])
  30.  
  31. Description
  32.  
  33. Delete an abbreviation.
  34.  
  35. Parameters
  36.  
  37. AbbreviationName: string    Template: enumeration(optional)
  38.  
  39. CurrentDoc!
  40.  
  41. PersonalLibrary!
  42.  
  43. QuickWords!
  44.  
  45. SharedLibrary!
  46.  
  47. AbbreviationDlg
  48.  
  49. Syntax
  50.  
  51. AbbreviationDlg()
  52.  
  53. Description
  54.  
  55. Display the Abbreviations dialog box.
  56.  
  57. AbbreviationExpand
  58.  
  59. Syntax
  60.  
  61.  AbbreviationExpand([AbbreviationName As String], [Template As _AbbreviationExpand_Template_enum]))
  62.  
  63. Description
  64.  
  65. Expand an abbreviation.
  66.  
  67. Parameters
  68.  
  69. AbbreviationName: string(optional)    Template: enumeration(optional)
  70.  
  71. CurrentDoc!
  72.  
  73. PersonalLibrary!
  74.  
  75. QuickWords!
  76.  
  77. SharedLibrary!
  78.  
  79. AbbreviationsShippingMacro
  80.  
  81. Syntax
  82.  
  83. AbbreviationsShippingMacro()
  84.  
  85. Description
  86.  
  87. Play the shipping macro ABBREV.WCM to display the Abbreviations dialog box in a modeless state. ABBREV.WCM must be installed.
  88.  
  89. AboutDlg
  90.  
  91. Syntax
  92.  
  93. AboutDlg()
  94.  
  95. Description
  96.  
  97. Display the About WordPerfect dialog box, which displays product and license information.
  98.  
  99. AddressBookDlg
  100.  
  101. Syntax
  102.  
  103. AddressBookDlg([SelectionType As _AddressBookDlg_SelectionType_enum], [CurrentSelections As _AddressBookDlg_CurrentSelections_enum], [AddressBook As String], [DialogTitle As String], [OKButtonText As String]) As Boolean
  104.  
  105. Description
  106.  
  107. Display the Address Book dialog box. You can also pre-select certain options using the parameters. If OK is clicked to dismiss the dialog, the Address Book will remember the currently selected addresses.
  108.  
  109. Return Value
  110.  
  111. Returns True if the OK button was clicked to dismiss the dialog, False if not.
  112.  
  113. Parameters
  114.  
  115. SelectionType: enumeration (optional)    Default = SingleSelection!
  116.  
  117. MultipleSelection!
  118.  
  119. SingleSelection!
  120.  
  121. CurrentSelections: enumeration (optional)    Default = Ignore!
  122.  
  123. Ignore!
  124.  
  125. Reselect!
  126.  
  127. AddressBook: string (optional)    The name of the address book to view.
  128.  
  129. DialogTitle: string (optional)    Change the text of the title bar.
  130.  
  131. OKButtonText: string (optional)    Change the text of the OK button. Default = OK.
  132.  
  133. AddressBookFormatAdd
  134.  
  135. Syntax
  136.  
  137. AddressBookFormatAdd(Name As String, Format As String)
  138.  
  139. Description
  140.  
  141. Create a custom address format and add it to the list of address formats.
  142.  
  143. Parameters
  144.  
  145. Name: string    The name of the new custom format.
  146.  
  147. Format: string    The address format string. Data fields are designated by enclosing the field code number in square brackets ([ ]). Use the Codes button on the Macro Bar to insert hard return or tab codes. Although the codes look like bracketed text, they are codes in the text string. For example:
  148.  
  149. AddressBookFormatAdd (Name: "Test"; Format: "[12289][HRt][14889][HRt][14887], [14888] [14890]")
  150.  
  151. Use AddressBookGetFieldCount, AddressBookGetFieldNumber, and AddressBookGetFieldName to get the names and code numbers of the address book fields.
  152.  
  153. AddressBookFormatDelete
  154.  
  155. Syntax
  156.  
  157. AddressBookFormatDelete(Name As String)
  158.  
  159. Description
  160.  
  161. Delete a custom address format from the list of address formats. System (predefined) address formats cannot be deleted from the address format list.
  162.  
  163. Parameters
  164.  
  165. Name: string    The name of the custom format to delete.
  166.  
  167. AddressBookFormatGetCount
  168.  
  169. Syntax
  170.  
  171. AddressBookFormatGetCount() As Long
  172.  
  173. Description
  174.  
  175. Return the number of available address formats.
  176.  
  177. Address formats can be referenced by index number to return information about the format. See AddressBookFormatGetNameand AddressBookFormatGetFormat. Some address formats are provided with the program (predefined) and cannot be deleted. These formats are indexed from one through the number of formats provided. User-defined address format indexes begin following the predefined formats and are indexed in order of creation. For example, if there are five predefined address formats and four user-defined address formats, the predefined formats would have index numbers ranging from one to five; and the user-defined formats would have index numbers ranging from six to nine in the order which they were created. If a user-defined address format is deleted, the index number of each succeeding format is reduced by one.
  178.  
  179. Therefore, the address-format index numbers will always be sequential. Also, the index number of a user-defined address format may change if a previously created address format is deleted.
  180.  
  181. AddressBookFormatGetCurrent
  182.  
  183. Syntax
  184.  
  185. AddressBookFormatGetCurrent(Item As _AddressBookFormatGetCurrent_Item_enum) As String
  186.  
  187. Description
  188.  
  189. Return the format name or specification of the current address format.
  190.  
  191. Parameters
  192.  
  193. Item: enumeration    Specify the item to return.
  194.  
  195. Format!
  196.  
  197. Name!
  198.  
  199. AddressBookFormatGetFormat
  200.  
  201. Syntax
  202.  
  203. AddressBookFormatGetFormat(index As Long) As String
  204.  
  205. Description
  206.  
  207. Return the specification of the address format specified in Index.
  208.  
  209. Parameters
  210.  
  211. Index: numeric    Use AddressBookFormatGetCount to determine the value of this parameter.
  212.  
  213. AddressBookFormatGetName
  214.  
  215. Syntax
  216.  
  217.  AddressBookFormatGetName(index As Long) As String
  218.  
  219. Description
  220.  
  221. Return the name of the specified address format.
  222.  
  223. Parameters
  224.  
  225. Index: numeric    Use AddressBookFormatGetCount to determine the value of this parameter.
  226.  
  227. AddressBookGetCount
  228.  
  229. Syntax
  230.  
  231. AddressBookGetCount() As Long
  232.  
  233. Description
  234.  
  235. Return the number of available address books.
  236.  
  237. AddressBookGetFieldCount
  238.  
  239. Syntax
  240.  
  241. AddressBookGetFieldCount(AddressBook As String) As Long
  242.  
  243. Description
  244.  
  245. Return the number of available fields in the specified address book.
  246.  
  247. Parameters
  248.  
  249. AddressBook: string    The name of the address book to get the field count from.
  250.  
  251. AddressBookGetFieldName
  252.  
  253. Syntax
  254.  
  255. AddressBookGetFieldName(AddressBook As String, index As Long) As String
  256.  
  257. Description
  258.  
  259. Return the name of a specific field in the specified address book.
  260.  
  261. Parameters
  262.  
  263. AddressBook: string    The name of the address book containing the desired field.
  264.  
  265. Index: numeric    The index number of the desired field.
  266.  
  267. AddressBookGetFieldNumber
  268.  
  269. Syntax
  270.  
  271. AddressBookGetFieldNumber(AddressBook As String, index As Long) As Long
  272.  
  273. Description
  274.  
  275. Return the code number of a specific field in the address book specified. The field code number is not the same as the field index number. Field code numbers always remain the same even if other fields are deleted. The table below lists the default system (predefined) data fields and their code numbers. Custom Fields are numbered sequentially in the order they are created beginning at 32768.
  276.  
  277. Code # Field Name
  278.  
  279. 12289 Name
  280.  
  281. 12290 E-Mail Type
  282.  
  283. 12291 E-Mail Address
  284.  
  285. 12292 Comments
  286.  
  287. 14854 First Name
  288.  
  289. 14856 Business Phone Number
  290.  
  291. 14857 Home Phone Number
  292.  
  293. 14865 Last Name
  294.  
  295. 14870 Organization
  296.  
  297. 14871 Title
  298.  
  299. 14872 Department
  300.  
  301. 14873 Mailstop
  302.  
  303. 14874 Phone Number
  304.  
  305. 14876 Cellular Phone Number
  306.  
  307. 14883 Fax Number
  308.  
  309. 14886 Country
  310.  
  311. 14887 City
  312.  
  313. 14888 State
  314.  
  315. 14889 Address
  316.  
  317. 14890 ZIP Code
  318.  
  319. 24587 Greeting
  320.  
  321. Parameters
  322.  
  323. AddressBook: string    The name of the address book containing the desired field.
  324.  
  325. Index: numeric    The index number of the desired field.
  326.  
  327. AddressBookGetName
  328.  
  329. Syntax
  330.  
  331. AddressBookGetName(index As Long) As String
  332.  
  333. Description
  334.  
  335. Return the name of the specified address book.
  336.  
  337. Parameters
  338.  
  339. Index: numeric    The index number of the desired address book.
  340.  
  341. AddressBookInsertAddr
  342.  
  343. Syntax
  344.  
  345. AddressBookInsertAddr()
  346.  
  347. Description
  348.  
  349. Display the Corel Address Book dialog box so you can insert an address.
  350.  
  351. AddressMergeShippingMacro
  352.  
  353. Syntax
  354.  
  355. AddressMergeShippingMacro()
  356.  
  357. Description
  358.  
  359. Play the shipping macro ADRS2MRG.WCM to copy the address book into a merge data file. ADRS2MRG.WCM must be installed.
  360.  
  361. Advance
  362.  
  363. Syntax
  364.  
  365. Advance(Where As _Advance_Where_enum, Amount As Integer)
  366.  
  367. Description
  368.  
  369. Move the insertion point a specified distance from the top or left of the page, or from the insertion point.
  370.  
  371. Parameters
  372.  
  373. Where: enumeration    AdvanceDown!
  374.  
  375. AdvanceFromLeftEdge!
  376.  
  377. AdvanceFromTop!
  378.  
  379. AdvanceLeft!
  380.  
  381. AdvanceRight!
  382.  
  383. AdvanceUp!
  384.  
  385. Down!
  386.  
  387. Left!
  388.  
  389. Right!
  390.  
  391. ToLine!
  392.  
  393. ToPosition!
  394.  
  395. Up!
  396.  
  397. Amount: measurement    
  398.  
  399. AdvanceDlg
  400.  
  401. Syntax
  402.  
  403. AdvanceDlg()
  404.  
  405. Description
  406.  
  407. Display the Advance dialog box.
  408.  
  409. AllFontsShippingMacro
  410.  
  411. Syntax
  412.  
  413. AllFontsShippingMacro()
  414.  
  415. Description
  416.  
  417. Play the shipping macro ALLFONTS.WCM to create a list of available fonts for the current printer. ALLFONTS.WCM must be installed.
  418.  
  419. Append
  420.  
  421. Syntax
  422.  
  423. Append()
  424.  
  425. Description
  426.  
  427. Add a copy of the selected text or graphics to the end of the Clipboard contents. If the Clipboard is empty, the macro ends.
  428.  
  429. AppendToFile
  430.  
  431. Syntax
  432.  
  433.  AppendToFile([Filename As String])
  434.  
  435. Description
  436.  
  437. Add the selected text, or the current document if no text is selected, to the end of another file.
  438.  
  439. Parameters
  440.  
  441. Filename: string (optional)    The file to append to.
  442.  
  443. ApplicationBarShow
  444.  
  445. Syntax
  446.  
  447.  ApplicationBarShow([State As _ApplicationBarShow_State_enum])
  448.  
  449. Description
  450.  
  451. Display (On!) or hide (Off!) the Application Bar. If no parameter is specified, this method toggles the Application Bar display.
  452.  
  453. Parameters
  454.  
  455. State: enumeration (optional)    Off!
  456.  
  457. On!
  458.  
  459. AppMaximize
  460.  
  461. Syntax
  462.  
  463. AppMaximize()
  464.  
  465. Description
  466.  
  467. Maximize the application window. If the window is already maximized, the macro ends.
  468.  
  469. AppMinimize
  470.  
  471. Syntax
  472.  
  473. AppMinimize()
  474.  
  475. Description
  476.  
  477. Minimize the application window to an icon. If the window is already minimized, the macro ends.
  478.  
  479. AppMove
  480.  
  481. Syntax
  482.  
  483. AppMove()
  484.  
  485. Description
  486.  
  487. Reposition an application window that has been reduced in size. If WordPerfect is maximized, the macro ends or goes to the ONERROR label.
  488.  
  489. AppRestore
  490.  
  491. Syntax
  492.  
  493. AppRestore()
  494.  
  495. Description
  496.  
  497. Restore the application window to its previous size. If WordPerfect is already restored, the macro ends or goes to the ONERROR label.
  498.  
  499. AppSize
  500.  
  501. Syntax
  502.  
  503. AppSize()
  504.  
  505. Description
  506.  
  507. Resize the current application window. If the window is maximized, the macro ends or goes to the ONERROR label.
  508.  
  509. AppTaskList
  510.  
  511. Syntax
  512.  
  513. AppTaskList()
  514.  
  515. Description
  516.  
  517. Activate the Taskbar and display the Start menu.
  518.  
  519. AssociateDlg
  520.  
  521. Syntax
  522.  
  523. AssociateDlg()
  524.  
  525. Description
  526.  
  527. Display the Associate dialog box, which allows you to assign menus, toolbars, and keyboards to selected features.
  528.  
  529. AttributeAppearanceOff
  530.  
  531. Syntax
  532.  
  533. AttributeAppearanceOff([Attrib])
  534.  
  535. Description
  536.  
  537. Turn off the specified attributes at the insertion point. One or more attribute parameters is required.
  538.  
  539. Parameters
  540.  
  541. Attrib: enumeration (optional)    Bold!
  542.  
  543. DoubleUnderline!
  544.  
  545. Every!
  546.  
  547. Italics!
  548.  
  549. Outline!
  550.  
  551. Redline!
  552.  
  553. Shadow!
  554.  
  555. SmallCaps!
  556.  
  557. Strikeout!
  558.  
  559. Underline!
  560.  
  561. AttributeAppearanceOn
  562.  
  563. Syntax
  564.  
  565. AttributeAppearanceOn([Attrib])
  566.  
  567. Description
  568.  
  569. Turn on the specified attributes at the insertion point. One or more parameters is required.
  570.  
  571. Parameters
  572.  
  573. Attrib: enumeration (optional)    Bold!
  574.  
  575. DoubleUnderline!
  576.  
  577. Every!
  578.  
  579. Italics!
  580.  
  581. Outline!
  582.  
  583. Redline!
  584.  
  585. Shadow!
  586.  
  587. SmallCaps!
  588.  
  589. Strikeout!
  590.  
  591. Underline!
  592.  
  593. AttributeAppearanceToggle
  594.  
  595. Syntax
  596.  
  597. AttributeAppearanceToggle([Attrib])
  598.  
  599. Description
  600.  
  601. Toggle attributes, usually of the selected text. One or more attribute parameters is required.
  602.  
  603. Parameters
  604.  
  605. Attrib: enumeration (optional)    Bold!
  606.  
  607. DoubleUnderline!
  608.  
  609. Every!
  610.  
  611. Italics!
  612.  
  613. Outline!
  614.  
  615. Redline!
  616.  
  617. Shadow!
  618.  
  619. SmallCaps!
  620.  
  621. Strikeout!
  622.  
  623. Underline!
  624.  
  625. AttributeNormal
  626.  
  627. Syntax
  628.  
  629. AttributeNormal()
  630.  
  631. Description
  632.  
  633. Turn off the current font attributes except color. To record, first add an Attribute Normal button to a toolbar or the Power Bar in Preferences.
  634.  
  635. AttributePosition
  636.  
  637. Syntax
  638.  
  639. AttributePosition(Position As _AttributePosition_Position_enum)
  640.  
  641. Description
  642.  
  643. Specify subscript or superscript font attributes.
  644.  
  645. Parameters
  646.  
  647. Position: enumeration    NormalPosition!
  648.  
  649. Subscript!
  650.  
  651. Superscript!
  652.  
  653. AttributePositionToggle
  654.  
  655. Syntax
  656.  
  657. AttributePositionToggle(Position As _AttributePositionToggle_Position_enum)
  658.  
  659. Description
  660.  
  661. Toggle subscript, normal, and superscript font attributes.
  662.  
  663. Parameters
  664.  
  665. Position: enumeration    NormalPosition!
  666.  
  667. Subscript!
  668.  
  669. Superscript!
  670.  
  671. AttributeRelativeSize
  672.  
  673. Syntax
  674.  
  675.  AttributeRelativeSize(Size As _AttributeRelativeSize_Size_enum)
  676.  
  677. Description
  678.  
  679. Specify a relative font size for selected or subsequent text.
  680.  
  681. Parameters
  682.  
  683. Size: enumeration    ExtraLarge!
  684.  
  685. Fine!
  686.  
  687. Large!
  688.  
  689. NormalSize!
  690.  
  691. Small!
  692.  
  693. VeryLarge!
  694.  
  695. AttributeRelativeSizeToggle
  696.  
  697. Syntax
  698.  
  699. AttributeRelativeSizeToggle(Size As _AttributeRelativeSizeToggle_Size_enum)
  700.  
  701. Description
  702.  
  703. Toggle relative font sizes.
  704.  
  705. Parameters
  706.  
  707. Size: enumeration    ExtraLarge!
  708.  
  709. Fine!
  710.  
  711. Large!
  712.  
  713. NormalSize!
  714.  
  715. Small!
  716.  
  717. VeryLarge!
  718.  
  719. AttributeSizeRatios
  720.  
  721. Syntax
  722.  
  723.  AttributeSizeRatios(Attrib As _AttributeSizeRatios_Attrib_enum, Percentage As Integer)
  724.  
  725. Description
  726.  
  727. Specify relative font size ratios.
  728.  
  729. Parameters
  730.  
  731. Attrib: enumeration    ExtraLarge!
  732.  
  733. Fine!
  734.  
  735. Large!
  736.  
  737. Small!
  738.  
  739. SuperSubscript!
  740.  
  741. VeryLarge!
  742.  
  743. Percentage: numeric    
  744.  
  745. AutoCodePlacement
  746.  
  747. Syntax
  748.  
  749. AutoCodePlacement(State As _AutoCodePlacement_State_enum)
  750.  
  751. Description
  752.  
  753. Turn automatic code placement on or off. Default: Some codes are automatically placed at the beginning of a page or paragraph. When off, all codes are inserted at the insertion point. Not recordable.
  754.  
  755. Parameters
  756.  
  757. State: enumeration    Off!
  758.  
  759. On!
  760.  
  761. AutoScrollOn
  762.  
  763. Syntax
  764.  
  765. AutoScrollOn()
  766.  
  767. Description
  768.  
  769. Turns the Autoscroll feature on.
  770.  
  771. AutoWordSelect
  772.  
  773. Syntax
  774.  
  775. AutoWordSelect(State As _AutoWordSelect_State_enum)
  776.  
  777. Description
  778.  
  779. Turn Automatically Select Words on or off. Changes the current WordPerfect session only.
  780.  
  781. Parameters
  782.  
  783. State: enumeration    No!
  784.  
  785. Yes!
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.