ImageGear for .NET
getAllTags Method
See Also  "Example" Send comments on this topic.
ImageGear.Web.Isis Namespace Client API Library > ImageGear.Web.Isis Namespace > ImGearIsisScanner Class : getAllTags Method

callback
Callback which is called when all tags are retrieved.

Glossary Item Box

Gets the current configuration of the scanner in use.

Syntax

ASP.NET Ajax Javascript (Specification) 
function getAllTags( 
   callback : function
) : ImGearIsisOperationStatus;
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfImGearIsisScanner.getAllTags(function);

Parameters

callback
Callback which is called when all tags are retrieved.

Return Value

ImGearIsisOperationStatus value.

Example

The JavaScript code below demonstrates how to get all scanner ISIS tags:

JavaScriptCopy Code
var scannerSettings = "";
...
function getAllTagsCallback(settingString, status) {
    if (status.get_status() !== ImageGear.Web.Isis.ImGearIsisStatus.Completed) {
        alert(status.get_statusMessage());
    }
    scannerSettings = settingString;
}

scannerSession.get_scanner().getAllTags(getAllTagsCallback);

Remarks

This is an asynchronous method.

The scanner must be set before calling this method.

See Also

©2013. Accusoft Corporation. All Rights Reserved.