Description
This .NET class wraps the AcDbPolyFaceMesh ObjectARX class.
The PolyFaceMesh class represents the PolyFaceMesh special polyline entity type within AutoCAD.
Class Hierarchy
Autodesk.AutoCAD.DatabaseServices.DBObject Autodesk.AutoCAD.DatabaseServices.Entity Autodesk.AutoCAD.DatabaseServices.PolyFaceMesh
Visual Basic
Public Class PolyFaceMesh Inherits Entity Inherits IEnumerable
C#
public class PolyFaceMesh : Entity, IEnumerable;
Notes
The PolyFaceMesh uses a list of vertices made up of coordinate point vertices and FaceRecord vertices. The coordinate point vertices come first in the list, followed by all of the FaceRecord vertices.
The controlling application must explicitly delete the subentities of any complex entity that is not database resident. Otherwise, a small memory leak will result.
Warning
Do not derive from this class. Attempting to do so will cause your application to halt AutoCAD.