Y Cell (Geometry Section)

Represents a y -coordinate on a shape in local coordinates. This table describes the Y cell based on the row in which it's located.

Row Description
NURBSTo
If the MoveTo row is the first row in the section, the Y cell represents the y -coordinate of the first vertex of a path. If the MoveTo row appears between two rows, the Y cell represents the y -coordinate of the first vertex after the break in the path.
LineTo
The y -coordinate of the ending vertex of a straight line segment.
ArcTo
The y -coordinate of the ending vertex of an arc.
EllipticalArcTo
The y -coordinate of the ending vertex of an elliptical arc.
PolylineTo
The y -coordinate of the ending vertex of a polyline.
NURBSTo
The y -coordinate of the last control point of a nonuniform rational B-spline (NURBS).
SplineStart
The y -coordinate of a spline's second control point.
SplineKnot
The y -coordinate of a control point.
InfiniteLine
A y -coordinate of a point on the infinite line.
Ellipse
The y -coordinate of the center of the ellipse.

Remarks

To get a reference to the Y cell by name from another formula, or from a program using the CellsU property, use:

Value
Cell name:
Geometry i .Y j where i and j = <1>, 2, 3...
Cell name:
Geometry i .Y1 (InfiniteLine and Ellipse rows) where i = <1>, 2, 3...

To get a reference to the Y cell by index from a program, use the CellsSRC property with the following arguments:

Value
Section index:
visSectionFirstComponent + i where i = 0, 1, 2...
Row index:
visRowVertex + j where j = 0, 1, 2...
Row index:
visRowVertex (InfiniteLine and Ellipse rows)
Cell index:
visY (MoveTo, LineTo, ArcTo, EllipticalArcTo, NURBSTo, Polyline, SplineStart, and SplineKnot rows)
Cell index:
visInfiniteLineY1 (InfiniteLine row)
Cell index:
visEllipseCenterY (Ellipse row)