SendFax Method

Microsoft Word Visual Basic

Sends the specified document as a fax, without any user interaction.

expression.SendFax(Address, Subject)

expression    Required. An expression that returns a Document object.

Address   Required String. The recipient's fax number.

Subject   Optional Variant. The text for the subject line. The character limit is 255.

ShowSendFax method as it applies to the Application object.

Starts the Fax Wizard.

expression.SendFax

expression    Required. An expression that returns an Application object.

Example

ShowAs it applies to the Document object.

This example sends the active document as a fax.

ActiveDocument.SendFax Address:="12065551234", _
    Subject:="Important Fax"
				

ShowAs it applies to the Application object.

This example starts the Fax Wizard.

Application.SendFax