Document.SendFax Method (Word)
Sends the specified document as a fax, without any user interaction.
Syntax
expression .SendFax(Address, Subject)
expression Required. A variable that represents a Document object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Address |
Required |
String |
The recipient's fax number. |
Subject |
Optional |
Variant |
The text for the subject line. The character limit is 255. |
Example
This example sends the active document as a fax.
ActiveDocument.SendFax Address:="12065551234", _
Subject:="Important Fax"