←Select platform

RightMargin Property

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

Syntax
C#
C++/CLI
Python
public float RightMargin { get; set; } 
public: 
property float RightMargin { 
   float get(); 
   void set (    float ); 
} 
RightMargin # get and set (TwainFrame) 

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 https://twain.org/. For more information, refer to How to Work with the Container.

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

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Twain Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.