public float RightMargin { get; set; }
RightMargin # get and set (TwainFrame)
The right margin value of a TW_FRAME structure.
The TW_FRAME structure defines the area of the image to be acquired. For more information on the TW_FRAME structure, refer to https://twain.org/. For more information, refer to How to Work with the Container.
using Leadtools;
using Leadtools.Twain;
public void RightMarginPropertyExample(IntPtr parent)
{
TwainSession session = new TwainSession();
session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None);
Leadtools.Twain.TwainFrame twFrm = new TwainFrame();
Leadtools.Twain.TwainCapability twCap = new TwainCapability();
twFrm.RightMargin = 5;
twFrm.LeftMargin = 1;
twFrm.BottomMargin = 9;
twFrm.TopMargin = 1;
twCap.Information.ContainerType = Leadtools.Twain.TwainContainerType.OneValue;
twCap.Information.Type = Leadtools.Twain.TwainCapabilityType.ImageFrames;
twCap.OneValueCapability.ItemType = Leadtools.Twain.TwainItemType.Frame;
twCap.OneValueCapability.Value = twFrm;
session.SetCapability(twCap, TwainSetCapabilityMode.Set);
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