Point method

Microsoft Visio Developer Reference

Point method

       

Returns a point at a position along a curve.

Version added

5.0

Syntax

object.Point(t, x, y)

object

Required. An expression that returns a Curve object.

t

Required Double. The value in the curve's parameter domain to evaluate.

x

Required Double. Returns x value of curve at t.

y

Required Double. Returns y value of curve at t.

Remarks

A Curve object describes itself in terms of its parameter domain, which is the range [Start(),End()]. The Point method of a Curve object returns the x,y coordinates at position t, which is any position along the curve's path. The Point method can be used to extrapolate the curve's path outside of [Start(),End()].