§ Find the
right owner to add a newly created object to
§All
objects have exactly one owner - The owner can be the database
§A
LayerTableRecord can only be added to the Layer Table
§
§Add() for adding
Symbol Table Records to Symbol
Table
§
§Use AppendXXX to add other kinds of objects to its owners
§ AppendEntity to add to BlockTableRecord
§
§Once an object is added to an owner, always let the transaction know!
§ newBtr.AppendEntity(circle) ‘Add our circle to its owner the BTR
§ trans.AddNewlyCreatedDBObject(circle,
True)
§