Leadtools TWAIN (Leadtools.Twain assembly)

RightMargin Property (TwainFrame)

Show in webframe
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:
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
Copy Code  
Imports Leadtools
Imports Leadtools.Twain

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
using Leadtools;
using Leadtools.Twain;

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

See Also

Reference

TwainFrame Structure
TwainFrame Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.