ImageGear .NET v25.0 - Updated
getAllTags Method

ImageGear.Web.Isis Library > ImageGear.Web.Isis Namespace > ImGearIsisScanner class : getAllTags Method
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

Example

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

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

Reference

ImGearIsisScanner class
ImGearIsisScanner Members