AutoCAD.BlockTableIterator

Description

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

This class is a FlexScript wrapper for the AcDbBlockTableIterator class.

Methods

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

Details

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

AutoCAD.BlockTableIterator.done()

bool done( )

Description

Returns true if the iterator has finished traversing the table.

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

AutoCAD.BlockTableIterator.getRecord()

AutoCAD.BlockTableRecord getRecord( int openMode = 0 , int openErasedRec = 0 )

Parameters

openMode The mode by which to open the object. 0 means read-only, 1 means write-enabled
openErasedRec 1 means open records that have been erased, 0 otherwise.

Description

Gets the block table record that the iterator is currently pointing at.

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

AutoCAD.BlockTableIterator.start()

void start( )

Description

Resets the iterator.

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

AutoCAD.BlockTableIterator.step()

void step( )

Description

Steps the iterator to its next record.