AutoCAD.BlockTableRecordIterator

Description

A class that encapsulates an iterator over a DWG block table record.

This class is a FlexScript wrapper for the AcDbBlockTableREcordIterator class.

Methods

done Returns true if the iterator has finished traversing the record.
getEntity Gets the entity that the iterator is currently pointing at.
start Resets the iterator.
step Steps the iterator to its next entry.

Details

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.BlockTableRecordIterator.done()

bool done( )

Description

Returns true if the iterator has finished traversing the record.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.BlockTableRecordIterator.getEntity()

AutoCAD.Entity getEntity( int openMode = 0 )

Parameters

openMode The mode by which to open the object. 0 means read-only, 1 means write-enabled

Description

Gets the entity that the iterator is currently pointing at.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.BlockTableRecordIterator.start()

void start( )

Description

Resets the iterator.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.BlockTableRecordIterator.step()

void step( )

Description

Steps the iterator to its next entry.