Gets or sets the right margin value of a TW_FRAME structure.
public float RightMargin { get; set; }
Public Property RightMargin As Single
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://www.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 = 80;
twFrm.LeftMargin = 0;
twFrm.BottomMargin = 80;
twFrm.TopMargin = 10;
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();
}
Imports Leadtools
Imports Leadtools.Twain
Public Sub RightMarginPropertyExample(ByVal parent As IntPtr)
Dim session As TwainSession = New TwainSession()
session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None)
Dim twFrm As Leadtools.Twain.TwainFrame = New TwainFrame()
Dim twCap As Leadtools.Twain.TwainCapability = New TwainCapability()
twFrm.RightMargin = 80
twFrm.LeftMargin = 0
twFrm.BottomMargin = 80
twFrm.TopMargin = 10
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()
End Sub
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