Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
TransformPoints Method
See Also 
Leadtools Namespace > Transformer Class : TransformPoints Method



pts
The input logical points
matrix
The transformation matrix to use.
Converts the specified points from logical to physical coordinates.

Syntax

Visual Basic (Declaration) 
Public Shared Function TransformPoints( _
   ByVal pts() As PointF, _
   ByVal matrix As Matrix _
) As PointF()
Visual Basic (Usage)Copy Code
Dim pts() As PointF
Dim matrix As Matrix
Dim value() As PointF
 
value = Transformer.TransformPoints(pts, matrix)
C# 
public static PointF[] TransformPoints( 
   PointF[] pts,
   Matrix matrix
)
C++/CLI 
public:
static array<PointF>^ TransformPoints( 
   array<PointF>^ pts,
   Matrix matrix
) 

Parameters

pts
The input logical points
matrix
The transformation matrix to use.

Return Value

The points converted from logical to physical coordinates.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also