EnumeratePadsNext

Declaration

Delphi

function EnumeratePadsNext(var NextPad: ShortString): Boolean;

C/C++

SOPAD_API BOOL SOPAD_EnumeratePadsNext(char szNextPad[SOPAD_MAX_STRING_LENGTH]);

ActiveX

HRESULT EnumeratePadsNext([out] BSTR* NextPad, [out, retval] VARIANT_BOOL* Result);

Description

Function continues enumeration of attached signature devices.

Arguments

NextPad

Output parameter. PadSettings string of the next attached signature device.

Return value

Function returns true if one more signature device is attached and its PadSettings string is copied to the NextPad variable. Return value is false if there is no more attached signature devices.

Sample

C#
string nextPad;
SigDev.EnumeratePadsNext(out nextPad);

See also

PadSettings string

EnumeratePadsFirst