Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi Community,
For Xrecord, what is the difference between
DxfCode.ArbitraryHandle and DxfCode.Handle?
For storing a Handle, which type is right?
var rb = new ResultBuffer(
new TypedValue((int)DxfCode.ArbitraryHandle, id.Handle);
new TypedValue((int)DxfCode.Handle, id.Handle);
Xrecord xrec = new Xrecord();
xrec.Data = rb;
xdic.SetAt(APP, xrec);
tr.AddNewlyCreatedDBObject(xrec, true);
Also for storing ObjectId, which type should I use?
DxfCode.HardPointerId or DxfCode.SoftPointerId?
Solved! Go to Solution.