GeneralTransform.TryTransform(Point, Point) Method

Definition

Attempts to transform the specified point and returns a value that indicates whether the transformation was successful.

public:
 virtual bool TryTransform(Point inPoint, [Out] Point & outPoint) = TryTransform;
bool TryTransform(Point const& inPoint, [Out] Point & outPoint);
public bool TryTransform(Point inPoint, out Point outPoint);
Public Function TryTransform (inPoint As Point, ByRef outPoint As Point) As Boolean

Parameters

inPoint
Point

The point to transform.

outPoint
Point

The result of transforming inPoint.

Returns

Boolean

bool

true if inPoint was transformed; otherwise, false.

Applies to