VintaSoft Twain .NET SDK Discussions
Questions, comments and suggestions concerning VintaSoft Twain .NET SDK.
Board index < VintaSoft Twain < VintaSoft Twain .NET SDK Discussions
VSTwain.tiffMultiPage = true // multi page TIFF file
VSTwain.tiffCompression = 10 // auto detect of best compression algorithm
VSTwain.OpenDataSource()
VSTwain.unitOfMeasure = 0
if (!showUIChk.checked)
{
VSTwain.resolution = scanResolution
VSTwain.pixelType = pixelType;
}
VSTwain.maxImages = 1000;
VSTwain.xferCount = -1;
I want to know how to mimic this code using the Vintasoft JavaScript API. Is there an equivalent of properties like xferCount in the JavaScript API? Is there documentation or examples that I can refer to?