←Select platform

ImageFrame Property

Summary
Gets or sets the image frame used when transferring images from the current TWAIN source.

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

Property Value

The image frame used when transferring images from the current TWAIN source.

Remarks

The image frame specifies the size and location of the image to acquire.

Example
C#
using Leadtools; 
using Leadtools.Twain; 
 
 
public void ImageFramePropertyExample(IntPtr parent) 
{ 
   TwainSession session = new TwainSession(); 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); 
 
   TwainFrame frame = new TwainFrame(); 
 
   frame = session.ImageFrame; 
 
   frame.LeftMargin = 0; 
   frame.TopMargin = 0; 
   frame.RightMargin = 8.5F; 
   frame.BottomMargin = 11; 
   session.ImageFrame = frame; 
   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.