ImageGear .NET
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

ImageGear.Web.Isis Namespace Client API~ImageGear.Web.Isis.ImGearIsisScanner
ImGearIsisScanner Members

 

 


©2016. Accusoft Corporation. All Rights Reserved.

Send Feedback