Leadtools TWAIN (Leadtools.Twain assembly)
LEAD Technologies, Inc

RightMargin Property (TwainFrame)

Example 





Gets or sets the right margin value of a TW_FRAME structure.
Syntax
public float RightMargin {get; set;}
'Declaration
 
Public Property RightMargin As Single
'Usage
 
Dim instance As TwainFrame
Dim value As Single
 
instance.RightMargin = value
 
value = instance.RightMargin
public float RightMargin {get; set;}
 get_RightMargin();
set_RightMargin(value);
public:
property float RightMargin {
   float get();
   void set (    float value);
}

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
 
Public Sub RightMarginPropertyExample(ByVal parent As IWin32Window)
   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
public void RightMarginPropertyExample(IWin32Window 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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

TwainFrame Structure
TwainFrame Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.