Search
IGraphics.TransformPoints Method (CoordinateSpace, CoordinateSpace, PointF[])
See Also
 





Transforms an array of points from one coordinate space to another using the current world and page transformations of this IGraphics object.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void TransformPoints (
    CoordinateSpace destSpace,
    CoordinateSpace srcSpace,
    PointF[] pts
)

Visual Basic  Copy Code

Sub TransformPoints( _
    destSpace As CoordinateSpace, _
    srcSpace As CoordinateSpace, _
    pts() As PointF _
)

 Parameters

destSpace
Member of the .NET CoordinateSpace enumeration that specifies the destination coordinate space.
srcSpace
Member of the .NET CoordinateSpace enumeration that specifies the source coordinate space.
pts
An array of .NET PointF structures that represent the points to transform.

 See Also