FaxAccountOutgoingArchive.SizeHigh property

Specifies the high-order 32-bit value of the size (in bytes) of the archive of outbound fax messages for a particular fax account.

This property is read-only.

Syntax

Property SizeHigh As Long

Property value

A Long that receives the high-order 32-bit value of the size (in bytes) of the archive of outbound fax messages for a particular account.

Remarks

Because the archive size can exceed 4 GB in size, its size is described as a 64-bit integer whose value is returned as two 32-bit integer values. SizeLow contains the low-order 32-bit value of the archive size. SizeHigh contains the high-order 32-bit value of the archive size. The 64-bit value of the archive size can be computed as: Size64 = (SizeHigh << 32) + SizeLow.

If both the SizeLow and SizeHigh properties have the value 0xffffffff, they specify an invalid archive size, and you should ignore both property values.

The property is read-only.

To read this property, a user must have the far2QUERY_CONFIG access right.

Requirements

Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2008 [desktop apps only]
Header
FaxComex.h
DLL
Fxscomex.dll

See also

FaxAccountOutgoingArchive

IFaxAccountOutgoingArchive