AutoCAD.BlockTable
Inherits from AutoCAD.Object
Description
A class that encapsulates a DWG database's block table.
This class is a FlexScript wrapper for the AcDbBlockTable class.
Methods
| getAt | Gets the block table record with the defined name. | 
| newIterator | Gets an iterator over the records in the block table. | 
Details
Do no remove, this fixes the anchor on doc.flexsim.com
			AutoCAD.BlockTable.getAt()
| AutoCAD.BlockTableRecord getAt( string blockName , int openMode ) | 
Parameters
| blockName | The name of the block. | 
| openMode | The mode by which to open the object. 0 for read only, 1 for write-enabled. | 
Description
Gets the block table record with the defined name.
Do no remove, this fixes the anchor on doc.flexsim.com
			AutoCAD.BlockTable.newIterator()
| AutoCAD.BlockTableIterator newIterator( int atBeginning = 1 , int skipDeleted = 1 ) | 
Description
Gets an iterator over the records in the block table.