Share

AcDbSequenceEnd

Class Hierarchy

AcRxObject
    AcGiDrawable
        AcDbObject
            AcDbEntity
                AcDbSequenceEnd

C++

class AcDbSequenceEnd : public AcDbEntity;

File

dbents.h

Description

The AcDbSequenceEnd class represents the SEQEND entity within AutoCAD. Objects of this class are created and handled automatically by AutoCAD for each complex entity that requires them, such as AcDbBlockReference, AcDb2dPolyline, AcDb3dPolyline, etc.

Applications do not need to create objects of this class, nor do they need to add or remove them from databases. Applications are free to add or manipulate xdata on objects of this class, as well as work with extension dictionaries for objects of this class.

Remarks

The following members are not implemented for this class nor will they ever be, since objects of this class have no associated geometry.

AcDbEntity::explode()

AcDbEntity::getEcs()

AcDbEntity::getGeomExtents()

AcDbEntity::getGripPoints()

AcDbEntity::getOsnapPoints()

AcDbEntity::getStretchPoint()

AcDbEntity::intersectWith()

AcDbEntity::moveGripPointsAt()

AcDbEntity::moveStretchPointsAt()

AcDbEntity::transformBy()

Notes

Do not derive from this class. Attempting to do so will cause your application to halt AutoCAD.

See Also

AcDbBlockBegin, AcDbBlockEnd

Was this information helpful?