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

  1. DateCode
  2.  
  3. Syntax
  4.  
  5. DateCode()
  6.  
  7. Description
  8.  
  9. Insert a code to display the current date at the insertion point. The date code updates to the system date when the document is retrieved or reformatted.
  10.  
  11. DateFormat
  12.  
  13. Syntax
  14.  
  15. DateFormat(DateFormatString As String)
  16.  
  17. Description
  18.  
  19. Specify a date format, and insert the Date Fmt code at the insertion point.
  20.  
  21. Parameters
  22.  
  23. DateFormatString: string    A combination of text characters, date, and/or time codes. Select date and time codes from the Macro Codes dialog. Click Codes on the Macro Bar to display the Macro Codes dialog.
  24.  
  25. DateFormatDlg
  26.  
  27. Syntax
  28.  
  29.  DateFormatDlg()
  30.  
  31. Description
  32.  
  33. Display the Document Date/Time Format dialog box.
  34.  
  35. Example
  36.  
  37. In the following example, the code will execute when the user clicks the 'Date' Command button. This code will produce the Date dialog box.
  38.  
  39. Private Sub CommandButtonDate_Click()
  40.  
  41.  
  42.  
  43. '******* Declare Object
  44.  
  45. Dim PS as PerfectScript
  46.  
  47.  
  48.  
  49. '****** Allocate memory to the object
  50.  
  51. Set PS = new PerfectScript
  52.  
  53.  
  54.  
  55. '***** Call the datye format dialog box
  56.  
  57. PS.DateFormatDlg
  58.  
  59. End Sub
  60.  
  61. DateText
  62.  
  63. Syntax
  64.  
  65. DateText()
  66.  
  67. Description
  68.  
  69. Insert the system date as text at the insertion point.
  70.  
  71. DDEChangeUpdateMode
  72.  
  73. Syntax
  74.  
  75.  DDEChangeUpdateMode(LiInkName As String, [UpdateMode As _DDEChangeUpdateMode_UpdateMode_enum])
  76.  
  77. Description
  78.  
  79. Specify a manual or automatic DDE link update method.
  80.  
  81. Parameters
  82.  
  83. LinkName: string    The name of the link to update.
  84.  
  85. UpdateMode: enumeration (optional)    Automatic!
  86.  
  87. Manual!
  88.  
  89. DDECreateLink
  90.  
  91. Syntax
  92.  
  93. DDECreateLink(LinkName As String, Source As String, [UpdateMode As _DDECreateLink_UpdateMode_enum], [Format As _DDECreateLink_Format_enum])
  94.  
  95. Description
  96.  
  97. Establish a link between a WordPerfect document and a file in another application. Data changes in the source file are automatically made in the WordPerfect document.
  98.  
  99. Parameters
  100.  
  101. LinkName: string    The name of the link you want to create.
  102.  
  103. Source: string    The application, file, and optionally, an item within the file that is linked to a WordPerfect document. Separate the application and filename with a vertical bar (|). If an item (a section of a file) is specified, separate the item from the file name with a second vertical bar.
  104.  
  105. UpdateMode: enumeration (optional)    Manual!
  106.  
  107. Automatic! 
  108.  
  109. Format: enumeration (optional)    WP6DOC!
  110.  
  111. WPDOC!
  112.  
  113. WP6TEXT!
  114.  
  115. WPG2!
  116.  
  117. RTF!
  118.  
  119. TEXT!
  120.  
  121. OEMTEXT!
  122.  
  123. METAFILE!
  124.  
  125. WB1!
  126.  
  127. WP7DOC!
  128.  
  129. WP7TEXT!
  130.  
  131. WP8DOC!
  132.  
  133. WP8TEXT!
  134.  
  135. WP9DOC!
  136.  
  137. WP9TEXT! 
  138.  
  139. DDECreateLinkDlg
  140.  
  141. Syntax
  142.  
  143.  DDECreateLinkDlg()
  144.  
  145. Description
  146.  
  147. Display the Links dialog box.
  148.  
  149.  
  150.  
  151. DDEDeleteLink
  152.  
  153. Syntax
  154.  
  155. DDEDeleteLink([LinkName])
  156.  
  157. Description
  158.  
  159. Remove a DDE link.
  160.  
  161. Parameters
  162.  
  163. LinkName: string(optional)    
  164.  
  165. DDEDeleteLinkDlg
  166.  
  167. Syntax
  168.  
  169. DDEDeleteLinkDlg()
  170.  
  171. Description
  172.  
  173. Display the Links dialog box.
  174.  
  175. DDEEditLink
  176.  
  177. Syntax
  178.  
  179.  DDEEditLink(LinkName As String, [NewName As String], [NewSource As String])
  180.  
  181. Description
  182.  
  183. Change the properties of a DDE link.
  184.  
  185. Parameters
  186.  
  187. LinkName: string    The original name of the link.
  188.  
  189. NewName: string (optional)    The new name for the link.
  190.  
  191. NewSource: string (optional)    The new source application for the link.
  192.  
  193. DDEEditLinkDlg
  194.  
  195. Syntax
  196.  
  197. DDEEditLinkDlg()
  198.  
  199. Description
  200.  
  201. Display the Change Links dialog box.
  202.  
  203.  
  204.  
  205. DDEPasteLink
  206.  
  207. Syntax
  208.  
  209. DDEPasteLink([Format As _DDEPasteLink_Format_enum])
  210.  
  211. Description
  212.  
  213. Establish a link between a WordPerfect document and a file in another application. Data changes in the source file are automatically made in the WordPerfect document. After copying a selection in another application to the Clipboard, use DDEPasteLink to link it to a WordPerfect document.
  214.  
  215. Parameters
  216.  
  217. Format: enumeration (optional)    WP6DOC!
  218.  
  219. WPDOC!
  220.  
  221. WP6TEXT!
  222.  
  223. WPG2!
  224.  
  225. RTF!
  226.  
  227. TEXT!
  228.  
  229. OEMTEXT!
  230.  
  231. METAFILE!
  232.  
  233. WB1!
  234.  
  235. WP7DOC!
  236.  
  237. WP7TEXT!
  238.  
  239. WP8DOC!
  240.  
  241. WP8TEXT!
  242.  
  243. WP9DOC!
  244.  
  245. WP9TEXT! 
  246.  
  247. DDEUpdateLink
  248.  
  249. Syntax
  250.  
  251. DDEUpdateLink([LinkName])
  252.  
  253. Description
  254.  
  255. Update a specified DDE link. If the optional LinkName parameter is left off, all links in the current document are updated.
  256.  
  257. Parameters
  258.  
  259. LinkName: string (optional)    The name of the link to update.
  260.  
  261. DDEUpdateLinkDlg
  262.  
  263. Syntax
  264.  
  265.  DDEUpdateLinkDlg()
  266.  
  267. Description
  268.  
  269. Display the Links dialog box.
  270.  
  271. DecimalAlignmentCharacter
  272.  
  273. Syntax
  274.  
  275.  DecimalAlignmentCharacter([Character As String]) As String
  276.  
  277. Description
  278.  
  279. Specify the ASCII numeric equivalent of a decimal character.
  280.  
  281. Parameters
  282.  
  283. Character: string    The decimal separator character.
  284.  
  285. DelayCodes
  286.  
  287. Syntax
  288.  
  289.  DelayCodes(PagesToDelay As Integer)
  290.  
  291. Description
  292.  
  293. Postpone the effects of codes for one or more pages.
  294.  
  295. Parameters
  296.  
  297. PagesToDelay: numeric    
  298.  
  299. DelayCodesDlg
  300.  
  301. Syntax
  302.  
  303.  DelayCodesDlg()
  304.  
  305. Description
  306.  
  307. Display the Delay Codes dialog box.
  308.  
  309. DeleteAppend
  310.  
  311. Syntax
  312.  
  313. DeleteAppend()
  314.  
  315. Description
  316.  
  317. Delete a selection and append it to the Clipboard.
  318.  
  319. DeleteCharNext
  320.  
  321. Syntax
  322.  
  323. DeleteCharNext()
  324.  
  325. Description
  326.  
  327. Delete the character to the right of the insertion point.
  328.  
  329. DeleteCharPrevious
  330.  
  331. Syntax
  332.  
  333.  DeleteCharPrevious()
  334.  
  335. Description
  336.  
  337. Delete the character to the left of the insertion point.
  338.  
  339. DeleteToBeginningOfWord
  340.  
  341. Syntax
  342.  
  343. DeleteToBeginningOfWord()
  344.  
  345. Description
  346.  
  347. Delete the text and codes from the insertion point to the beginning of the current word. The insertion point must be in a word.
  348.  
  349. DeleteToEndOfLine
  350.  
  351. Syntax
  352.  
  353.  DeleteToEndOfLine()
  354.  
  355. Description
  356.  
  357. Delete the text and codes from the insertion point to the end of the current line. Does not delete hard returns or hard page breaks.
  358.  
  359. DeleteToEndOfPage
  360.  
  361. Syntax
  362.  
  363. DeleteToEndOfPage()
  364.  
  365. Description
  366.  
  367. Delete the text and codes from the insertion point to the end of the current page. Does not delete hard page breaks.
  368.  
  369. DeleteToEndOfWord
  370.  
  371. Syntax
  372.  
  373. DeleteToEndOfWord()
  374.  
  375. Description
  376.  
  377. Delete the text and codes from the insertion point to the end of the current word.
  378.  
  379. DeleteWord
  380.  
  381. Syntax
  382.  
  383. DeleteWord()
  384.  
  385. Description
  386.  
  387. Delete the current word or space.
  388.  
  389. DirectoryCreate
  390.  
  391. Syntax
  392.  
  393.  DirectoryCreate(Directory As String)
  394.  
  395. Description
  396.  
  397. Create a new directory.
  398.  
  399. Parameters
  400.  
  401. Directory: string    The path and directory name.
  402.  
  403. Note It is more efficient to use the common dialog control.DirectoryExists
  404.  
  405. Syntax
  406.  
  407. DirectoryExists(Variable, Directory As String)
  408.  
  409. Description
  410.  
  411. Return whether a specified directory exists.
  412.  
  413. Parameters
  414.  
  415. Variable: variable    True or False.
  416.  
  417. Directory: string    The name and path of the directory. 
  418.  
  419. Display
  420.  
  421. Syntax
  422.  
  423. Display([State As _Display_State_enum]) As Boolean
  424.  
  425. Description
  426.  
  427. Display macro execution when a macro is played. A macro runs faster with display off. A "Macro Play" message appears on the Application Bar.
  428.  
  429. Return Value
  430.  
  431. Returns True if display is on, False if not. If the State parameter is omitted, its current value is returned. If it is included, the current value is returned, then the new value is set.
  432.  
  433. Parameters
  434.  
  435. State: enumeration    Off!
  436.  
  437. On!
  438.  
  439. DisplayMode
  440.  
  441. Syntax
  442.  
  443. DisplayMode(DisplayMode As _DisplayMode_DisplayMode_enum)
  444.  
  445. Description
  446.  
  447. Display the current document in Draft or Page mode. Included for DOS compatibility. DOS enumerations do not correspond exactly with WordPerfect 8 View options. Text! and Graphics! specify Draft mode, and FullPage! specifies Page mode. Recordable substitutes: ViewDraft, ViewPage, and ViewTwoPage.
  448.  
  449. Parameters
  450.  
  451. DisplayMode: enumeration    Text!
  452.  
  453. Graphics!
  454.  
  455. FullPage!
  456.  
  457. WebPage!
  458.  
  459. DisplaySuppressedBoxes
  460.  
  461. Syntax
  462.  
  463.  DisplaySuppressedBoxes([State As _DisplaySuppressedBoxes_State_enum]) As Boolean
  464.  
  465. Description
  466.  
  467. Lets you specify whether or not you want to display suppressed boxes.
  468.  
  469. Parameters
  470.  
  471. State: enumeration    No!
  472.  
  473. Yes!
  474.  
  475. DisplayZoom
  476.  
  477. Syntax
  478.  
  479.  DisplayZoom(Percent As Integer)
  480.  
  481. Description
  482.  
  483. Specify the current zoom setting.
  484.  
  485. Parameters
  486.  
  487. Percent: numeric    Percent: 25-400.
  488.  
  489.  
  490.  
  491. Example
  492.  
  493. In the following example the document zoom is set to 150. The PS object references the PerfectScript object.
  494.  
  495.  
  496.  
  497. Private Sub CommandButtonZoom_Click()
  498.  
  499. '******* Declare the PerfectScript object
  500.  
  501. Dim PS as PerfectScript
  502.  
  503.  
  504.  
  505. '******* Allocate memory to the PerfectScript object
  506.  
  507. Set PS = new PerfectScript
  508.  
  509.  
  510.  
  511. '******* Set Zoom to 150
  512.  
  513. PS.DisplayZoom 150
  514.  
  515. End Sub
  516.  
  517. DocCompareAddMarkingsDlg
  518.  
  519. Syntax
  520.  
  521. DocCompareAddMarkingsDlg()
  522.  
  523. Description
  524.  
  525. Display the Add Markings dialog box.
  526.  
  527. DocCompareOptions
  528.  
  529. Syntax
  530.  
  531. (Precision: enumeration; SkipChars: string; CmpHdrsFtrs: enumeration; CmpComments: enumeration; ExpandMstrDocs: enumeration; SummaryOfCmp: enumeration; ListOfChanges: enumeration; InsertionBoldAttr: enumeration; InsertionItalicAttr: enumeration; InsertionUndAttr: enumeration; InsertionDUndAttr: enumeration; InsertionRedlineAttr: enumeration; InsColorRed: numeric; InsColorGreen: numeric; InsColorBlue: numeric; EncloseInsWith: enumeration; DeletionBoldAttr: enumeration; DeletionItalicAttr: enumeration; DeletionUndAttr: enumeration; DeletionDUndAttr: enumeration; DeletionRedlineAttr: enumeration; DeletionStkoutAttr: enumeration; DelColorRed: numeric; DelColorGreen: numeric; DelColorBlue: numeric; EncloseDelWidth: enumeration; ShowDelTextAs: enumeration; DelTextChar: string; ShowMoves: enumeration; MoveColorRed: numeric; MoveColorGreen: numeric; MoveColorBlue: numeric; ReviewOpt: enumeration;)
  532.  
  533. Description
  534.  
  535. Lets you specify the options for the DocCompare method.
  536.  
  537. Parameters
  538.  
  539. Precision: enumeration (optional)    Character!
  540.  
  541. Word!
  542.  
  543. SkipChars: string (optional)    
  544.  
  545. CmpHdrsFtrs: enumeration (optional)    No!
  546.  
  547. Yes!
  548.  
  549. CmpComments: enumeration (optional)    No!
  550.  
  551. Yes!
  552.  
  553. ExpandMstrDocs: enumeration (optional)    No!
  554.  
  555. Yes!
  556.  
  557. SummaryOfCmp: enumeration (optional)    None!
  558.  
  559. AtBeginning!
  560.  
  561. AtEnd!
  562.  
  563. ListOfChanges: enumeration (optional)    None!
  564.  
  565. ShowChgOnly!
  566.  
  567. ShowContext!
  568.  
  569. InsertionBoldAttr: enumeration (optional)    Off!
  570.  
  571. On!
  572.  
  573. InsertionItalicAttr: enumeration (optional)    Off!
  574.  
  575. On!
  576.  
  577. InsertionUndAttr enumeration (optional)    Off!
  578.  
  579. On!
  580.  
  581. InsertionDUndAttr enumeration (optional)    Off!
  582.  
  583. On!
  584.  
  585. InsertionRedlineAttr enumeration (optional)    Off!
  586.  
  587. On!
  588.  
  589. InsColorRed: numeric (optional)    
  590.  
  591. InsColorGreen: numeric (optional)    
  592.  
  593. InsColorBlue: numeric (optional)    
  594.  
  595. EncloseInsWith enumeration (optional)    None!
  596.  
  597. Brackets!
  598.  
  599. Braces!
  600.  
  601. Bkslashes!
  602.  
  603. Quotes!
  604.  
  605. GTLT!
  606.  
  607. DeletionBoldAttr enumeration (optional)    Off!
  608.  
  609. On!
  610.  
  611. DeletionUndAttr enumeration (optional)    Off!
  612.  
  613. On!
  614.  
  615. DeletionDUndAttr enumeration (optional)    Off!
  616.  
  617. On!
  618.  
  619. DeletionRedlineAttr enumeration (optional)    Off!
  620.  
  621. On!
  622.  
  623. DeletionStkoutAttr enumeration (optional)    Off!
  624.  
  625. On!
  626.  
  627. DelColorRed: numeric (optional)    
  628.  
  629. DelColorGreen: numeric (optional)    
  630.  
  631. DelColorBlue: numeric (optional)    
  632.  
  633. EncloseDelWith enumeration (optional)    None!
  634.  
  635. Brackets!
  636.  
  637. Braces!
  638.  
  639. Bkslashes!
  640.  
  641. Quotes!
  642.  
  643. GTLT!
  644.  
  645. ShowDelTextAs enumeration (optional)    FullText!
  646.  
  647. AbbrevText!
  648.  
  649. NoText!
  650.  
  651. Character!
  652.  
  653. DelTextChar: string (optional)    
  654.  
  655. ShowMoves enumeration (optional)    NotShown!
  656.  
  657. AtNewLoc!
  658.  
  659. AtBothLocs!
  660.  
  661. MoveColorRed: numeric (optional)    
  662.  
  663. MoveColorGreen: numeric (optional)    
  664.  
  665. MoveColorBlue: numeric (optional)    
  666.  
  667. ReviewOpt enumeration (optional)    CompareOnly!
  668.  
  669. CompareThenReview!
  670.  
  671. DocCompareRemoveMarkingsDlg
  672.  
  673. Syntax
  674.  
  675. DocCompareRemoveMarkingsDlg()
  676.  
  677. Description
  678.  
  679. Display the Remove Markings dialog box.
  680.  
  681. DocCompareRemoveRedline
  682.  
  683. Syntax
  684.  
  685. DocCompareRemoveRedline(flag As _DocCompareRemoveRedline_Flag_enum)
  686.  
  687. Description
  688.  
  689. Remove Strikeout and Redline codes and Strikeout text, or remove only Strikeout codes and text.
  690.  
  691. Parameters
  692.  
  693. Flag: enumeration    LeaveRedline!
  694.  
  695. RemoveAll!
  696.  
  697. DocInitialFont
  698.  
  699. Syntax
  700.  
  701. DocInitialFont(Name As String, [PointSize As Integer], [Family As _DocInitialFont_Family_enum], [Attributes As _DocInitialFont_Attributes_enum], [Weight As _DocInitialFont_Weight_enum], [Width As _DocInitialFont_Width_enum], [Source As _DocInitialFont_Source_enum], [Type As _DocInitialFont_Type_enum], [CharacterSet As _DocInitialFont_CharacterSet_enum])
  702.  
  703. Description
  704.  
  705. Set the default font for the current document.
  706.  
  707. Parameters
  708.  
  709. Name: string    The font face for the document.
  710.  
  711. PointSize: measurement (optional)    The font size for the document.
  712.  
  713. Family: enumeration (optional)    FamilyAestheticOrnamented!
  714.  
  715. FamilyAlbertus!
  716.  
  717. FamilyBodoni!
  718.  
  719. FamilyBroadway!
  720.  
  721. FamilyBrush!
  722.  
  723. FamilyCenturySchoolbook!
  724.  
  725. FamilyComputer!
  726.  
  727. FamilyCourier!
  728.  
  729. FamilyHelvetica!
  730.  
  731. FamilyHobo!
  732.  
  733. FamilyITCBenguiat!
  734.  
  735. FamilyITCGaramond!
  736.  
  737. FamilyITCLubalinGraph!
  738.  
  739. FamilyITCRonda!
  740.  
  741. FamilyITCZapfDingbats!
  742.  
  743. FamilyLetterGothic!
  744.  
  745. FamilyMadrone!
  746.  
  747. FamilyMicrostyle!
  748.  
  749. FamilyOldEnglish!
  750.  
  751. FamilyOptima!
  752.  
  753. FamilyParkAvenue!
  754.  
  755. FamilyPonderosa!
  756.  
  757. FamilyPTBarnum!
  758.  
  759. FamilyRevue!
  760.  
  761. FamilySignetRoundhand!
  762.  
  763. FamilyTekton!
  764.  
  765. FamilyTimesRoman!
  766.  
  767. FamilyUncial!
  768.  
  769. Attributes: enumeration (optional)    FontMatchItalic!
  770.  
  771. FontMatchNormal!
  772.  
  773. FontMatchOutline!
  774.  
  775. FontMatchShadow!
  776.  
  777. FontMatchSmallCaps!
  778.  
  779. Weight: enumeration (optional)    WeightBlack!
  780.  
  781. WeightBold!
  782.  
  783. WeightBook!
  784.  
  785. WeightDemiBold!
  786.  
  787. WeightDemiLight!
  788.  
  789. WeightExtraBlack!
  790.  
  791. WeightExtraBold!
  792.  
  793. WeightExtraHeavy!
  794.  
  795. WeightExtraLight!
  796.  
  797. WeightExtraThin!
  798.  
  799. WeightHeavy!
  800.  
  801. WeightLight!
  802.  
  803. WeightMaximum!
  804.  
  805. WeightMedium!
  806.  
  807. WeightRegular!
  808.  
  809. WeightRoman!
  810.  
  811. WeightSemiBold!
  812.  
  813. WeightSemiLight!
  814.  
  815. WeightThin!
  816.  
  817. WeightUltraBlack!
  818.  
  819. WeightUltraHeavy!
  820.  
  821. WeightUltraLight!
  822.  
  823. WeightUltraThin!
  824.  
  825. WeightUnknown!
  826.  
  827. Width: enumeration (optional)    WidthCompressed!
  828.  
  829. WidthCondensed!
  830.  
  831. WidthDoubleWide!
  832.  
  833. WidthExpanded!
  834.  
  835. WidthExtraCondensed!
  836.  
  837. WidthExtraExpanded!
  838.  
  839. WidthNormal!
  840.  
  841. WidthSemiCondensed!
  842.  
  843. WidthSemiExpanded!
  844.  
  845. WidthTripleWide!
  846.  
  847. WidthUltraCompressed!
  848.  
  849. WidthUltraCondensed!
  850.  
  851. WidthUltraExpanded!
  852.  
  853. WidthUnknown! 
  854.  
  855. Source: enumeration (optional)    DRSFile!
  856.  
  857. PRSFile!
  858.  
  859. Type: enumeration (optional)    Intellifont!
  860.  
  861. Speedo!
  862.  
  863. TrueType!
  864.  
  865. Type1!
  866.  
  867. CharacterSet: enumeration (optional)    FontMatchArabic!
  868.  
  869. FontMatchArabicScript!
  870.  
  871. FontMatchASCII!
  872.  
  873. FontMatchBoxDrawing!
  874.  
  875. FontMatchCyrillic!
  876.  
  877. FontMatchGreek!
  878.  
  879. FontMatchHebrew!
  880.  
  881. FontMatchIconicSymbols!
  882.  
  883. FontMatchJapaneseKana!
  884.  
  885. FontMatchMath!
  886.  
  887. FontMatchMathExtension!
  888.  
  889. FontMatchMultinational1!
  890.  
  891. FontMatchMultinational2!
  892.  
  893. FontMatchTypographicSymbols!
  894.  
  895. FontMatchUserDefined!
  896.  
  897. DocInitialFontDlg
  898.  
  899. Syntax
  900.  
  901. DocInitialFontDlg()
  902.  
  903. Description
  904.  
  905. Display the Document Initial Font dialog box.
  906.  
  907. DocMaximize
  908.  
  909. Syntax
  910.  
  911. DocMaximize()
  912.  
  913. Description
  914.  
  915. Maximize the current document window. If the document is already maximized, the macro ends or goes to the ONERROR label.
  916.  
  917. DocMinimize
  918.  
  919. Syntax
  920.  
  921. DocMinimize()
  922.  
  923. Description
  924.  
  925. Minimize the current document window. If the document is already minimized, the macro ends or goes to the ONERROR label.
  926.  
  927. DocMove
  928.  
  929. Syntax
  930.  
  931. DocMove()
  932.  
  933. Description
  934.  
  935. Reposition or resize the current document if the application window has been minimized.
  936.  
  937. DocNext
  938.  
  939. Syntax
  940.  
  941. DocNext()
  942.  
  943. Description
  944.  
  945. Move the current document to the back and the most recently opened document to the front.
  946.  
  947. DocPrevious
  948.  
  949. Syntax
  950.  
  951. DocPrevious()
  952.  
  953. Description
  954.  
  955. Activate the previous document window, if the document is still open.
  956.  
  957. DocRedlineMethodDlg
  958.  
  959. Syntax
  960.  
  961. DocRedlineMethodDlg()
  962.  
  963. Description
  964.  
  965. Display the Redline dialog box.
  966.  
  967. DocRestore
  968.  
  969. Syntax
  970.  
  971. DocRestore()
  972.  
  973. Description
  974.  
  975. Restore the current document to the size it was before it was minimized or maximized. If the document is already restored, the macro ends or goes to the ONERROR label.
  976.  
  977. DocSize
  978.  
  979. Syntax
  980.  
  981. DocSize()
  982.  
  983. Description
  984.  
  985. Move or resize the current minimized document window. If the window is maximized, an error is displayed and the macro ends or goes to the ONERROR label.
  986.  
  987. DocSummaryConfig
  988.  
  989. Syntax
  990.  
  991. DocSummaryConfig([DocSumFieldName])
  992.  
  993. Description
  994.  
  995. Specify the fields to include in the current document summary.
  996.  
  997. Parameters
  998.  
  999. DocSumFieldName: enumeration (optional)    Repeat the parameter for as many fields as need to be specified. Enclose repeating parameters in braces ({}) and separate with semi-colons.
  1000.  
  1001. Abstract!
  1002.  
  1003. Account!
  1004.  
  1005. Address!
  1006.  
  1007. Attachments!
  1008.  
  1009. Author!
  1010.  
  1011. Authorization!
  1012.  
  1013. BillTo!
  1014.  
  1015. BlindCopy!
  1016.  
  1017. CarbonCopy!
  1018.  
  1019. Category!
  1020.  
  1021. CheckedBy!
  1022.  
  1023. Client!
  1024.  
  1025. Comments!
  1026.  
  1027. CreationDate!
  1028.  
  1029. DateCompleted!
  1030.  
  1031. Department!
  1032.  
  1033. DescriptiveName!
  1034.  
  1035. DescriptiveType!
  1036.  
  1037. Destination!
  1038.  
  1039. Disposition!
  1040.  
  1041. Division!
  1042.  
  1043. DocumentNumber!
  1044.  
  1045. Editor!
  1046.  
  1047. ForwardTo!
  1048.  
  1049. Group!
  1050.  
  1051. Keywords!
  1052.  
  1053. Language!
  1054.  
  1055. MailStop!
  1056.  
  1057. Matter!
  1058.  
  1059. Office!
  1060.  
  1061. Owner!
  1062.  
  1063. Project!
  1064.  
  1065. Publisher!
  1066.  
  1067. Purpose!
  1068.  
  1069. ReceivedFrom!
  1070.  
  1071. RecordedBy!
  1072.  
  1073. RecordedDate!
  1074.  
  1075. Reference!
  1076.  
  1077. RevisionDate!
  1078.  
  1079. RevisionNotes!
  1080.  
  1081. RevisionNumber!
  1082.  
  1083. Section!
  1084.  
  1085. Security!
  1086.  
  1087. Source!
  1088.  
  1089. Status!
  1090.  
  1091. Subject!
  1092.  
  1093. TelephoneNumber!
  1094.  
  1095. Typist!
  1096.  
  1097. VersionDate!
  1098.  
  1099. VersionNotes!
  1100.  
  1101. VersionNumber!
  1102.  
  1103. DocSummaryDelete
  1104.  
  1105. Syntax
  1106.  
  1107. DocSummaryDelete()
  1108.  
  1109. Description
  1110.  
  1111. Delete the current document summary information.
  1112.  
  1113. DocSummaryPrint
  1114.  
  1115. Syntax
  1116.  
  1117.  DocSummaryPrint()
  1118.  
  1119. Description
  1120.  
  1121. Print the current document summary.
  1122.  
  1123. DocSummarySaveAs
  1124.  
  1125. Syntax
  1126.  
  1127. DocSummarySaveAs(Filename As String, [ExportType As _DocSummarySaveAs_ExportType_enum], [AppendReplace As _DocSummarySaveAs_AppendReplace_enum])
  1128.  
  1129. Description
  1130.  
  1131. Save the current document summary with a filename.
  1132.  
  1133. Parameters
  1134.  
  1135. Filename: string    The filename under which to save the document summary.
  1136.  
  1137. ExportType: enumeration (optional)    AmiPro_10!
  1138.  
  1139. AmiPro_12!
  1140.  
  1141. AmiPro_12A!
  1142.  
  1143. AmiPro_12B!
  1144.  
  1145. AmiPro_30!
  1146.  
  1147. ANSIDelimitedTextWindows!
  1148.  
  1149. ANSIGenericWordProcessor_Windows!
  1150.  
  1151. ANSIText_Windows!
  1152.  
  1153. ASCIIStandard!
  1154.  
  1155. ASCIIStripped!
  1156.  
  1157. DelimitedText!
  1158.  
  1159. DisplayWrite_40!
  1160.  
  1161. DisplayWrite_42!
  1162.  
  1163. DisplayWrite_50!
  1164.  
  1165. Excel_40!
  1166.  
  1167. FFT!
  1168.  
  1169. Kermit_7bit_Transfer!
  1170.  
  1171. MicroSoftWord_40!
  1172.  
  1173. MicroSoftWord_50!
  1174.  
  1175. MicroSoftWord_55!
  1176.  
  1177. MultiMate_33!
  1178.  
  1179. MultiMate_40!
  1180.  
  1181. MultiMateAdvantage_36!
  1182.  
  1183. MultiMateAdvantageII_10!
  1184.  
  1185. NavyDIF!
  1186.  
  1187. OfficeWriter_60!
  1188.  
  1189. OfficeWriter_61!
  1190.  
  1191. OfficeWriter_611!
  1192.  
  1193. OfficeWriter_62!
  1194.  
  1195. RFT!
  1196.  
  1197. RTF!
  1198.  
  1199. RTFJ!
  1200.  
  1201. WindowsWrite!
  1202.  
  1203. WordForWindows_10!
  1204.  
  1205. WordForWindows_11!
  1206.  
  1207. WordForWindows_12!
  1208.  
  1209. WordForWindows_1A!
  1210.  
  1211. WordForWindows_20!
  1212.  
  1213. WordForWindows_20a!
  1214.  
  1215. WordForWindows_20b!
  1216.  
  1217. WordForWindows_50!
  1218.  
  1219. WordPerfect_42!
  1220.  
  1221. WordPerfect_50!
  1222.  
  1223. WordPerfect_51!
  1224.  
  1225. WordPerfect_5xA!
  1226.  
  1227. WordPerfect_60!
  1228.  
  1229. WordPerfect_7!
  1230.  
  1231. WordStar_33!
  1232.  
  1233. WordStar_331!
  1234.  
  1235. WordStar_34!
  1236.  
  1237. WordStar_40!
  1238.  
  1239. WordStar_50!
  1240.  
  1241. WordStar_55!
  1242.  
  1243. WordStar_60!
  1244.  
  1245. WordStar2000_10!
  1246.  
  1247. WordStar2000_20!
  1248.  
  1249. WordStar2000_30!
  1250.  
  1251. XyWriteIIIPlus_355!
  1252.  
  1253. XyWriteIIIPlus_356!
  1254.  
  1255. AppendReplace: enumeration (optional)    Append!
  1256.  
  1257. Replace!
  1258.  
  1259. DocSumSet
  1260.  
  1261. Syntax
  1262.  
  1263. DocSumSet([DocSumFieldName], [DocSumFieldData])
  1264.  
  1265. Description
  1266.  
  1267. Modify the data of the specified document-summary field. Repeat both parameters for each field of the summary. Enclose repeating parameters in braces ({}).
  1268.  
  1269. Parameters
  1270.  
  1271. DocSumFieldName: enumeration (optional)    The fields to modify.
  1272.  
  1273. Abstract!
  1274.  
  1275. Account!
  1276.  
  1277. Address!
  1278.  
  1279. Attachments!
  1280.  
  1281. Author!
  1282.  
  1283. Authorization!
  1284.  
  1285. BillTo!
  1286.  
  1287. BlindCopy!
  1288.  
  1289. CarbonCopy!
  1290.  
  1291. Category!
  1292.  
  1293. CheckedBy!
  1294.  
  1295. Client!
  1296.  
  1297. Comments!
  1298.  
  1299. CreationDate!
  1300.  
  1301. DateCompleted!
  1302.  
  1303. Department!
  1304.  
  1305. DescriptiveName!
  1306.  
  1307. DescriptiveType!
  1308.  
  1309. Destination!
  1310.  
  1311. Disposition!
  1312.  
  1313. Division!
  1314.  
  1315. DocumentNumber!
  1316.  
  1317. Editor!
  1318.  
  1319. ForwardTo!
  1320.  
  1321. Group!
  1322.  
  1323. Keywords!
  1324.  
  1325. Language!
  1326.  
  1327. MailStop!
  1328.  
  1329. Matter!
  1330.  
  1331. Office!
  1332.  
  1333. Owner!
  1334.  
  1335. Project!
  1336.  
  1337. Publisher!
  1338.  
  1339. Purpose!
  1340.  
  1341. ReceivedFrom!
  1342.  
  1343. RecordedBy!
  1344.  
  1345. RecordedDate!
  1346.  
  1347. Reference!
  1348.  
  1349. RevisionNotes!
  1350.  
  1351. RevisionNumber!
  1352.  
  1353. Section!
  1354.  
  1355. Security!
  1356.  
  1357. Source!
  1358.  
  1359. Status!
  1360.  
  1361. Subject!
  1362.  
  1363. TelephoneNumber!
  1364.  
  1365. Typist!
  1366.  
  1367. VersionDate!
  1368.  
  1369. VersionNotes!
  1370.  
  1371. VersionNumber!
  1372.  
  1373. DocSumFieldData: string (optional)    The data for a document-summary field. If CreationDate!, DateCompleted!, RecordedDate!, RevisionDate!, or VersionDate! is specified in the DocSumFieldName parameter, the date must be entered in the sequence of Year, Month, Day. For example: "1994, 9, 14." If the date format is incorrect, the specified date field is not updated.
  1374.  
  1375. DocumentCompare
  1376.  
  1377. Syntax
  1378.  
  1379. DocumentCompare(Filename As String, MarkIn As _DocumentCompare_MarkIn_enum)
  1380.  
  1381. Description
  1382.  
  1383. Compare two versions of a document and mark differences.
  1384.  
  1385. Parameters
  1386.  
  1387. Filename: string
  1388.  
  1389.     The document you want to compare.
  1390.  
  1391. MarkIn:
  1392.  
  1393. enumeration    NewDoc!
  1394.  
  1395. CurrentDoc!
  1396.  
  1397.  
  1398.  
  1399. DotLeader
  1400.  
  1401. Syntax
  1402.  
  1403. DotLeader(Character As String, SpaceCount As Integer)
  1404.  
  1405. Description
  1406.  
  1407. Specify the ASCII number of a dot leader character, and the number of spaces between each character.
  1408.  
  1409. Parameters
  1410.  
  1411. Character: string    The ASCII number of a dot leader character.
  1412.  
  1413. SpaceCount: numeric    The number of spaces between the visible dot leader characters.
  1414.  
  1415. DoubleSidedPrint
  1416.  
  1417. Syntax
  1418.  
  1419. DoubleSidedPrint(Flags As _DoubleSidedPrint_Flags_enum)
  1420.  
  1421. Description
  1422.  
  1423. Turn double-sided printing (Duplex) on or off, and specify a binding edge. This method inserts a code in the document at the beginning of the current page.
  1424.  
  1425. Parameters
  1426.  
  1427. Flags: enumeration    LongEdge!
  1428.  
  1429. None!
  1430.  
  1431. ShortEdge!
  1432.  
  1433. DoubleSmartQuote
  1434.  
  1435. Syntax
  1436.  
  1437. DoubleSmartQuote([State As _DoubleSmartQuote_State_enum], [OpenDoubleQuote As Integer], [CloseDoubleQuote As Integer])
  1438.  
  1439. Description
  1440.  
  1441. Turn Double SmartQuotes on or off and specify a quote character.
  1442.  
  1443. Parameters
  1444.  
  1445. State: enumeration (optional)    Off!
  1446.  
  1447. On!
  1448.  
  1449. OpenDoubleQuote: numeric (optional)    The numeric equivalent of the quote character.
  1450.  
  1451. CloseDoubleQuote: numeric (optional)    The numeric equivalent of the quote character.
  1452.  
  1453. DraftZoom100
  1454.  
  1455. Syntax
  1456.  
  1457. DraftZoom100()
  1458.  
  1459. Description
  1460.  
  1461. Display Draft view with screen text and graphics at 100%. Draft view does not display headers, footers, or other substructures.
  1462.  
  1463. DraftZoomMargin
  1464.  
  1465. Syntax
  1466.  
  1467.  DraftZoomMargin()
  1468.  
  1469. Description
  1470.  
  1471. Display Draft view with screen text and graphics reaching the margins. Draft view does not display headers, footers, and other substructures.
  1472.  
  1473. DropCapAdjustDlg
  1474.  
  1475. Syntax
  1476.  
  1477. DropCapAdjustDlg()
  1478.  
  1479. Description
  1480.  
  1481. Display the Drop Cap Options dialog box.
  1482.  
  1483. DropCapBegin
  1484.  
  1485. Syntax
  1486.  
  1487. DropCapBegin()
  1488.  
  1489. Description
  1490.  
  1491. Begin a drop cap. Follow with drop cap editing methods and DropCapEnd().
  1492.  
  1493. DropCapBorderFillDlg
  1494.  
  1495. Syntax
  1496.  
  1497. DropCapBorderFillDlg()
  1498.  
  1499. Description
  1500.  
  1501. Display the Drop Cap Border/Fill dialog box.
  1502.  
  1503. DropCapBorderStyle
  1504.  
  1505. Syntax
  1506.  
  1507.  DropCapBorderStyle(BorderStyleName)
  1508.  
  1509. Description
  1510.  
  1511. Specify a drop cap border style. Use with DropCapBegin() and DropCapEnd(). You must pass the numeric value of the BorderStyleName.
  1512.  
  1513. Parameters
  1514.  
  1515. BorderStyleName: any    Enclose custom styles in quotation marks.
  1516.  
  1517. ButtonBorder!
  1518.  
  1519. ColumnBorderAll!
  1520.  
  1521. ColumnBorderBetween!
  1522.  
  1523. DashedBorder!
  1524.  
  1525. DottedBorder!
  1526.  
  1527. DoubleBorder!
  1528.  
  1529. ExtraThickBorder!
  1530.  
  1531. HeavyDoubleBorder!
  1532.  
  1533. HeavySingleBorder!
  1534.  
  1535. NoBorder!
  1536.  
  1537. SingleBorder!
  1538.  
  1539. SpacingOnly!
  1540.  
  1541. ThickBorder!
  1542.  
  1543. ThickThinBorder!
  1544.  
  1545. ThickTopBottomBorder!
  1546.  
  1547. ThinThickBorder!    
  1548.  
  1549.  
  1550.  
  1551. 10
  1552.  
  1553. 12
  1554.  
  1555. 11
  1556.  
  1557. 3
  1558.  
  1559. 4
  1560.  
  1561. 2
  1562.  
  1563. 6
  1564.  
  1565. 14
  1566.  
  1567. 13
  1568.  
  1569. 127
  1570.  
  1571. 1
  1572.  
  1573. 0
  1574.  
  1575. 5
  1576.  
  1577. 8
  1578.  
  1579. 9
  1580.  
  1581. 7
  1582.  
  1583.  
  1584.  
  1585. Example
  1586.  
  1587. In the following example, a drop cap is added. The border style used is 'ThickBorder', therefore the value 5 must be passed. The PS object is the PerfectScipt object.
  1588.  
  1589.  
  1590.  
  1591. '***** Declare the PerfectScript object
  1592.  
  1593. Dim PS as PerfectScript
  1594.  
  1595.  
  1596.  
  1597. '***** Allocate memory to the PerfectScript object
  1598.  
  1599. Set PS = new PerfectScript
  1600.  
  1601.  
  1602.  
  1603. '***** Begin Drop Cap
  1604.  
  1605. PS.DropCapBegin
  1606.  
  1607.  
  1608.  
  1609. PS.DropCapCharacters 1
  1610.  
  1611. PS.DropCapCharacterSize 2
  1612.  
  1613.  
  1614.  
  1615. '****** Set the border style
  1616.  
  1617. PS.DropCapBorderStyle 5
  1618.  
  1619.  
  1620.  
  1621. '***** End Drop Cap
  1622.  
  1623. PS.DropCapEnd Save_DropCapEnd_State
  1624.  
  1625. DropCapCharacters
  1626.  
  1627. Syntax
  1628.  
  1629. DropCapCharacters(Number As Integer)
  1630.  
  1631. Description
  1632.  
  1633. Specify the number of characters in a drop cap.
  1634.  
  1635. Parameters
  1636.  
  1637. Number: numeric    The number of characters included in a drop cap.
  1638.  
  1639. Example
  1640.  
  1641. In the following code fragment, one character has been specified for the drop cap. The PS object is the PerfectScript object.
  1642.  
  1643.  
  1644.  
  1645. '***** Declare the PerfectScript object
  1646.  
  1647. Dim PS as PerfectScript
  1648.  
  1649.  
  1650.  
  1651. '***** Allocate memory to the PerfectScript object
  1652.  
  1653. Set PS = new PerfectScript
  1654.  
  1655.  
  1656.  
  1657. '***** Begin Drop Cap
  1658.  
  1659. PS.DropCapBegin
  1660.  
  1661.  
  1662.  
  1663. PS.DropCapCharacters 1
  1664.  
  1665. PS.DropCapCharacterSize 2
  1666.  
  1667.  
  1668.  
  1669. '****** Set the border style
  1670.  
  1671. PS.DropCapBorderStyle 5
  1672.  
  1673.  
  1674.  
  1675. '***** End Drop Cap
  1676.  
  1677. PS.DropCapEnd Save_DropCapEnd_State
  1678.  
  1679. DropCapCharacterSize
  1680.  
  1681. Syntax
  1682.  
  1683. DropCapCharacterSize(Size As Double)
  1684.  
  1685. Description
  1686.  
  1687. Specify the size of a drop cap character(s). You should experiment to find the value that meets you needs.
  1688.  
  1689. Parameters
  1690.  
  1691. Size: numeric    The point size of the character(s) in a drop cap.
  1692.  
  1693. Example
  1694.  
  1695. In the following code fragment, the point size of the character used in the drop cap is 2. The PS object is the PerfectScript object.
  1696.  
  1697.  
  1698.  
  1699. '***** Declare the PerfectScript object
  1700.  
  1701. Dim PS as PerfectScript
  1702.  
  1703.  
  1704.  
  1705. '***** Allocate memory to the PerfectScript object
  1706.  
  1707. Set PS = new PerfectScript
  1708.  
  1709.  
  1710.  
  1711. '***** Begin Drop Cap
  1712.  
  1713. PS.DropCapBegin
  1714.  
  1715.  
  1716.  
  1717. PS.DropCapCharacters 1
  1718.  
  1719. PS.DropCapCharacterSize 2
  1720.  
  1721. PS.DropCapFillStyle 4
  1722.  
  1723.  
  1724.  
  1725. '****** Set the border style
  1726.  
  1727. PS.DropCapBorderStyle 5
  1728.  
  1729.  
  1730.  
  1731. '***** End Drop Cap
  1732.  
  1733. PS.DropCapEnd Save_DropCapEnd_State
  1734.  
  1735.  
  1736.  
  1737. DropCapContourWrap
  1738.  
  1739. Syntax
  1740.  
  1741. DropCapContourWrap(State)
  1742.  
  1743. Description
  1744.  
  1745. Wrap text around a drop cap.
  1746.  
  1747. Parameters
  1748.  
  1749. State: any    No!
  1750.  
  1751. Yes!
  1752.  
  1753. DropCapControlBar
  1754.  
  1755. Syntax
  1756.  
  1757. DropCapControlBar()
  1758.  
  1759. Description
  1760.  
  1761. Display the Drop Cap feature bar.
  1762.  
  1763. DropCapEnd
  1764.  
  1765. Syntax
  1766.  
  1767. DropCapEnd(State As _DropCapEnd_State_enum)
  1768.  
  1769. Description
  1770.  
  1771. End a drop cap and save the changes. Precede with DropCapBegin() and drop cap editing methods.
  1772.  
  1773. Parameters
  1774.  
  1775. State: enumeration    Cancel!
  1776.  
  1777. Save!
  1778.  
  1779. DropCapFillStyle
  1780.  
  1781. Syntax
  1782.  
  1783. DropCapFillStyle(FillStyleName)
  1784.  
  1785. Description
  1786.  
  1787. Specify a drop cap fill style. You must pass the numeric value that corresponds to the 'FillStyleName'.
  1788.  
  1789. Parameters
  1790.  
  1791. FillStyleName: any    Enclose custom styles in quotation marks.
  1792.  
  1793. Fill10!
  1794.  
  1795. Fill100!
  1796.  
  1797. Fill20!
  1798.  
  1799. Fill30!
  1800.  
  1801. Fill40!
  1802.  
  1803. Fill5!
  1804.  
  1805. Fill50!
  1806.  
  1807. Fill60!
  1808.  
  1809. Fill70!
  1810.  
  1811. Fill80!
  1812.  
  1813. Fill90!
  1814.  
  1815. FillButton!
  1816.  
  1817. NoFill!    
  1818.  
  1819. 0
  1820.  
  1821. 1
  1822.  
  1823. 2
  1824.  
  1825. 3
  1826.  
  1827. 4
  1828.  
  1829. 5
  1830.  
  1831. 6
  1832.  
  1833. 7
  1834.  
  1835. 8
  1836.  
  1837. 9
  1838.  
  1839. 10
  1840.  
  1841. 11
  1842.  
  1843. 127
  1844.  
  1845.  
  1846.  
  1847. Example
  1848.  
  1849. In the following code fragment, the fill style used is 4. The PS object is the PerfectScript object.
  1850.  
  1851.  
  1852.  
  1853. '***** Declare the PerfectScript object
  1854.  
  1855. Dim PS as PerfectScript
  1856.  
  1857.  
  1858.  
  1859. '***** Allocate memory to the PerfectScript object
  1860.  
  1861. Set PS = new PerfectScript
  1862.  
  1863.  
  1864.  
  1865. '***** Begin Drop Cap
  1866.  
  1867. PS.DropCapBegin
  1868.  
  1869.  
  1870.  
  1871. PS.DropCapCharacters 1
  1872.  
  1873. PS.DropCapCharacterSize 2
  1874.  
  1875. PS.DropCapFillStyle 4
  1876.  
  1877.  
  1878.  
  1879. '****** Set the border style
  1880.  
  1881. PS.DropCapBorderStyle 5
  1882.  
  1883.  
  1884.  
  1885. '***** End Drop Cap
  1886.  
  1887. PS.DropCapEnd Save_DropCapEnd_State
  1888.  
  1889.  
  1890.  
  1891. DropCapFontDlg
  1892.  
  1893. Syntax
  1894.  
  1895. DropCapFontDlg()
  1896.  
  1897. Description
  1898.  
  1899. Display the Drop Cap Font dialog box.
  1900.  
  1901. DropCapHorizontalAdjustment
  1902.  
  1903. Syntax
  1904.  
  1905. DropCapHorizontalAdjustment(Adjustment As Double)
  1906.  
  1907. Description
  1908.  
  1909. Specify the percentage of a drop cap that is located in the margin.
  1910.  
  1911. Parameters
  1912.  
  1913. Adjustment: numeric    Percent.
  1914.  
  1915. DropCapIncludeDescender
  1916.  
  1917. Syntax
  1918.  
  1919. DropCapIncludeDescender(State)
  1920.  
  1921. Description
  1922.  
  1923. Allow descending characters in a drop cap.
  1924.  
  1925. Parameters
  1926.  
  1927. State: any    No!
  1928.  
  1929. Yes!    0
  1930.  
  1931. 1
  1932.  
  1933. DropCapIncludeDiacritic
  1934.  
  1935. Syntax
  1936.  
  1937. DropCapIncludeDiacritic(State As _DropCapIncludeDiacritic_State_enum)
  1938.  
  1939. Description
  1940.  
  1941. Include diacritic marks in a drop cap.
  1942.  
  1943. Parameters
  1944.  
  1945. State: enumeration    No!
  1946.  
  1947. Yes!
  1948.  
  1949. DropCapKerning
  1950.  
  1951. Syntax
  1952.  
  1953. DropCapKerning(Adjustment As Integer)
  1954.  
  1955. Description
  1956.  
  1957. Specify the spacing between drop cap characters.
  1958.  
  1959. Parameters
  1960.  
  1961. Adjustment: measurement    The amount of space between drop cap characters.
  1962.  
  1963. DropCapNoWrap
  1964.  
  1965. Syntax
  1966.  
  1967.  DropCapNoWrap(State)
  1968.  
  1969. Description
  1970.  
  1971. Prevent text from wrapping around a drop cap.
  1972.  
  1973. Parameters
  1974.  
  1975. State: any    No!
  1976.  
  1977. Yes!    0
  1978.  
  1979. 1
  1980.  
  1981. DropCapOff
  1982.  
  1983. Syntax
  1984.  
  1985. DropCapOff()
  1986.  
  1987. Description
  1988.  
  1989. End the drop cap of the current paragraph.
  1990.  
  1991. DropCapPositionOtherDlg
  1992.  
  1993. Syntax
  1994.  
  1995. DropCapPositionOtherDlg()
  1996.  
  1997. Description
  1998.  
  1999. Display the Drop Cap Position dialog box.
  2000.  
  2001. DropCapSizeDlg
  2002.  
  2003. Syntax
  2004.  
  2005.  DropCapSizeDlg()
  2006.  
  2007. Description
  2008.  
  2009. Display the Drop Cap Size dialog box.
  2010.  
  2011. DropCapVerticalAdjustment
  2012.  
  2013. Syntax
  2014.  
  2015. DropCapVerticalAdjustment(Adjustment As Double)
  2016.  
  2017. Description
  2018.  
  2019. Specify the number of blank lines between a drop cap and the text that follows it.
  2020.  
  2021. Parameters
  2022.  
  2023. Adjustment: numeric    The number of blank lines between the text and the drop cap.
  2024.  
  2025.  
  2026.  
  2027.  
  2028.  
  2029.  
  2030.