Description
This .NET class wraps the AcDb3dPolylineVertex ObjectARX class.
The PolylineVertex3d class represents the vertices within 3D polylines in AutoCAD.
Class Hierarchy
Autodesk.AutoCAD.DatabaseServices.DBObject Autodesk.AutoCAD.DatabaseServices.Entity Autodesk.AutoCAD.DatabaseServices.Vertex Autodesk.AutoCAD.DatabaseServices.PolylineVertex3d
Visual Basic
Public Class PolylineVertex3d Inherits Vertex
C#
public class PolylineVertex3d : Vertex;
Notes
PolylineVertex3d objects contain the Entity methods to set the entity properties such as color, layer, and linetype. However, vertices are subentities that are supposed to have the same entity properties as the parent polyline. Therefore, using the Entity methods within the PolylineVertex3d objects to change these properties to values other than those of the parent will result in corrupt vertices. An audit can fix the corrupt vertices.
Do not derive from this class. Attempting to do so will cause your application to halt AutoCAD.
Links
PolylineVertex3d Constructor, PolylineVertex3d Properties
See Also
DBObject, Entity, Polyline3d