GeneralTransform.TryTransformCore(Point, Point) Method

Definition

Provides the means to override the TryTransform behavior in a derived transform class.

protected:
 virtual bool TryTransformCore(Point inPoint, [Out] Point & outPoint) = TryTransformCore;
bool TryTransformCore(Point const& inPoint, [Out] Point & outPoint);
protected virtual bool TryTransformCore(Point inPoint, out Point outPoint);
Protected Overridable Function TryTransformCore (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