SetMaxNumberOfFaxes

Sets the maximum number of faxes that are allowed per batch.

Member of namespace

OpenTextFaxServer

Syntax

bool SetMaxNumberOfFaxes (int MaxFaxes)

Parameters

MaxFaxes
Type: int

Parameters

MaxFaxes : The maximum number of faxes allowed per batch. The default value is 100.

Returns

False if the action is not called at the batch level. Otherwise, True.

Level

Batch Level.

Details

Sets the maximum number of faxes allowed per batch.

If this action is not called, the default value of 100 faxes per batch is used.

Include this action before a ImportFaxes() action.

Example
SetServerName("myserver")
SetUserID("myuser")
SetUserPassword("mypassword")
SetProtocol(4)
SetMaxNumberOfFaxes(5)
Connect()
ImportFaxes()