Sets the value of an ISIS tag of data type Integer.
The JavaScript code below demonstrates how to set the scanner ISIS scan type tag to an integer value of 0 (which represents automatic scan type for some scanners). You can use the getTag method to get the tag type and list or range of supported values for a tag.
function setTagCallback(status) {
if (status.get_status() !== ImageGear.Web.Isis.ImGearIsisStatus.Completed) {
alert(status.get_statusMessage());
}
}
scannerSession.get_scanner().setTagInteger(ImageGear.Web.Isis.ImGearIsisTag.ScanType, 0, 0, setTagCallback);