←Select platform

RightMargin Property (TwainFrame)

Summary

Gets or sets the right margin value of a TW_FRAME structure.

Syntax

C#
VB
C++
public float RightMargin {get; set;}
Public Property RightMargin As Single
public: 
property float RightMargin { 
   float get(); 
   void set (    float ); 
} 

Property Value

The right margin value of a TW_FRAME structure.

Remarks

The TW_FRAME structure defines the area of the image to be acquired. For more information on the TW_FRAME structure, refer to http://www.twain.org. For more information, refer to How to Work with the Container.

Example

C#
VB
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 
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(); 
} 

Requirements

Target Platforms

Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
Leadtools.Twain Assembly
Click or drag to resize