Leadtools.ScreenCapture Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.8.31
Area Property
See Also 
Leadtools.ScreenCapture Namespace > ScreenCaptureInformation Class : Area Property




Gets or sets the area being captured.

Syntax

Visual Basic (Declaration) 
Public Property Area As Rectangle
Visual Basic (Usage)Copy Code
Dim instance As ScreenCaptureInformation
Dim value As Rectangle
 
instance.Area = value
 
value = instance.Area
C# 
public Rectangle Area {get; set;}
Managed Extensions for C++ 
public: __property Rectangle get_Area();
public: __property void set_Area( 
   Rectangle value
);
C++/CLI 
public:
property Rectangle Area {
   Rectangle get();
   void set (Rectangle value);
}

Return Value

This will be filled by all of the capture functions with the bounding rectangle of the area that was captured. The coordinates should be relative to the full screen with left, top being 0,0.

Example

For an example, refer to ScreenCaptureEngine.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also