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




pts
The inpit 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
)
Managed Extensions for C++ 
public: static PointF[]* TransformPoints( 
   PointF[]* pts,
   Matrix matrix
) 
C++/CLI 
public:
static array<PointF>^ TransformPoints( 
   array<PointF>^ pts,
   Matrix matrix
) 

Parameters

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

Return Value

The points converted from logical to physical coordinates.

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