IFaxDocument2::get_Bodies method (faxcomex.h)

Provides a collection of one or more documents to the fax document.

Note  This property is supported only in Windows Vista and later.
 
This property is read/write.

Syntax

HRESULT get_Bodies(
  VARIANT *pvBodies
);

Parameters

pvBodies

Return value

None

Remarks

Examples of documents that you can send as fax bodies include text files (.txt), Microsoft Word documents (.doc), or Microsoft Excel spreadsheets (.xls). Filenames are separated with semi-colons ";". For example, "myfile.txt;anotherfile.doc".

Either the IFaxDocument2::Bodies property or the Body property must be NULL. You must use IFaxDocument2::Bodies if you will be submitting using either IFaxDocument2::ConnectedSubmit2 or IFaxDocument2::Submit2 (both available only in Windows Vista or later). You must use Body if you will be submitting using either ConnectedSubmit or Submit.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header faxcomex.h
DLL Fxscomex.dll

See also

FaxDocument

IFaxDocument2