Block table record that serves as a container for entities within drawing databases.
Block table records (BTRs) are used to organize and group entities together. There are two special BTRs that are always present in every database:
Each block table record has an origin point and can contain multiple entities.
const blockRecord = new AcDbBlockTableRecord();blockRecord.name = 'MyBlock';blockRecord.origin = new AcGePoint3d(0, 0, 0);blockRecord.appendEntity(new AcDbLine()); Copy
const blockRecord = new AcDbBlockTableRecord();blockRecord.name = 'MyBlock';blockRecord.origin = new AcGePoint3d(0, 0, 0);blockRecord.appendEntity(new AcDbLine());
Block table record that serves as a container for entities within drawing databases.
Block table records (BTRs) are used to organize and group entities together. There are two special BTRs that are always present in every database:
Each block table record has an origin point and can contain multiple entities.
Example