LEADTOOLS WPF and Silverlight (Leadtools.Windows.Media assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
ConvertFromGeometry Method
See Also 
Leadtools.Windows.Media Namespace > RasterRegionConverter Class : ConvertFromGeometry Method



geometry
The WPF/Silverlight source geometry. This parameter cannot be null (Nothing in Visual Basic).
geometry
The WPF/Silverlight source geometry. This parameter cannot be null (Nothing in Visual Basic).
Converts a WPF/Silverlight System.Windows.Media.Geometry object to a LEADTOOLS Leadtools.RasterRegion.

Syntax

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

Parameters

geometry
The WPF/Silverlight source geometry. 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 WPF/Silverlight System.Windows.Media.Geometry object.

For more information refer to RasterImage and WPF/Silverlight.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also