LEADTOOLS GDI/GDI+ (Leadtools.Drawing assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
ConvertFromRegion Method
See Also 



region
The source GDI+ region. This parameter cannot be null (Nothing in Visual Basic).
region
The source GDI+ region. This parameter cannot be null (Nothing in Visual Basic).
Converts a System.Drawing (GDI+) System.Drawing.Region object to a LEADTOOLS Leadtools.RasterRegion.

Syntax

Visual Basic (Declaration) 
Public Shared Function ConvertFromRegion( _
   ByVal region As Region _
) As RasterRegion
Visual Basic (Usage)Copy Code
Dim region As Region
Dim value As RasterRegion
 
value = RasterRegionConverter.ConvertFromRegion(region)
C# 
public static RasterRegion ConvertFromRegion( 
   Region region
)
C++/CLI 
public:
static RasterRegion^ ConvertFromRegion( 
   Region^ region
) 

Parameters

region
The source GDI+ region. This parameter cannot be null (Nothing in Visual Basic).

Return Value

The LEADTOOLS Leadtools.RasterRegion object this method creates. You must dispose this object after using it.

Example

For an example, refer to RasterRegionConverter.

Remarks

The LEADTOOLS Leadtools.RasterRegion class provides a platform independent representation of an area of interest in a Leadtools.RasterImage that can be used in any platform supported by LEADTOOLS such as GDI, GDI+, WPF and Silverlight. Use this class To convert a LEADTOOLS Leadtools.RasterRegion object to/from a GDI HRGN and System.Drawing (GDI+) System.Drawing.Region object.

For more information refer to RasterImage and GDI/GDI+.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also