_Document.RunLetterWizard Method

Runs the Letter Wizard on the specified document.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
Sub RunLetterWizard ( _
    ByRef LetterContent As Object, _
    ByRef WizardMode As Object _
)
'Usage
Dim instance As _Document
Dim LetterContent As Object
Dim WizardMode As Object

instance.RunLetterWizard(LetterContent, _
    WizardMode)
void RunLetterWizard(
    ref Object LetterContent,
    ref Object WizardMode
)

Parameters

  • LetterContent
    Type: System.Object%
    Optional Object. A LetterContent object. Any filled properties in the LetterContent object show up as prefilled elements in the Letter Wizard dialog boxes. If this argument is omitted, the GetLetterContent method is automatically used to get a LetterContent object from the specified document.
  • WizardMode
    Type: System.Object%
    Optional Object. True to display the Letter Wizard dialog box as a series of steps with a Next, Back, and Finish button. False to display the Letter Wizard dialog box as if it were opened from the Tools menu (a properties dialog box with an OK button and a Cancel button). The default value is True.

Remarks

Use the CreateLetterContent method to return a LetterContent object, given various letter element properties. Use the GetLetterContent method to return a LetterContent object based on the contents of the specified document. You can use the resulting LetterContent object with the RunLetterWizard method to preset elements in the Letter Wizard dialog box.

See Also

Reference

_Document Interface

_Document Members

Microsoft.Office.Interop.Word Namespace