RightMargin Property (original) (raw)
Summary
Gets or sets the right margin value of a TW_FRAME structure.
Syntax
public float RightMargin { get; set; }
public:
property float RightMargin {
float get();
void set ( float );
}
Property Value
The right margin value of a TW_FRAME structure.
Example
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();
}