public int Channel3 { get; set; }
Channel3 # get and set (TwainElement8)
The third tri-stimulus value (e.g. Blue channel).
using Leadtools;
using Leadtools.Twain;
public void ModifyRgbResponseExample(IntPtr parent)
{
TwainSession session = new TwainSession();
session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None);
List<TwainElement8> rgbElements = new List<TwainElement8>();
TwainElement8 tempElement = new TwainElement8();
tempElement.Index = 0;
tempElement.Channel1 = 0;
tempElement.Channel2 = 0;
tempElement.Channel3 = 0;
rgbElements.Add(tempElement);
tempElement.Index = 1;
tempElement.Channel1 = 255;
tempElement.Channel2 = 255;
tempElement.Channel3 = 255;
rgbElements.Add(tempElement);
try
{
session.ModifyRgbResponse(rgbElements, 1, TwainRgbResponseFlags.TwainRgbResponseSet);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
throw ex;
}
session.Shutdown();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document