| DiaGlobWrapperCancelGetDigits Method |
diaGlobWrapper Help
Stops collecting digits.
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic void CancelGetDigits(
Channel CurrentChannel
)
Public Sub CancelGetDigits (
CurrentChannel As Channel
)
public:
void CancelGetDigits(
Channel^ CurrentChannel
)
member CancelGetDigits :
CurrentChannel : Channel -> unit
Parameters
- CurrentChannel
- Type: InkostarChannel
The Channel on the Dialogic board on which the function is to be executed.
Remarks
This function can only be invoked when the channel has been opened.
Compatibility: All
On failure this function will generate an exception of type DiaGlobWrapperLibException
Examples
To stop collecting digits:
C#: objDevice.CancelGetDigits(ChannelInbound);
VB.NET: objDevice.CancelGetDigits(ChannelInbound)
See Also