FS#2582 - Support for storing/loading custom property titles starting with “QCAD...”
Andrew,
Related to: FS#2488
Would it be possible to support storing/loading custom property titles starting with “QCAD...” and then also treated as key-value pair.
They don’t need to be supported in the GUI, the Property Editor or elsewhere, storing and reloading them as defined in this session is perfectly fine.
As far as I know it is the only effective way to hide custom properties in the PE, avoiding that users can see specific properties per entity or edit them.
This is also effective:
var att = new RPropertyAttributes();
att.setReadOnly(true);
att.setInvisible(true);
RObject.setCustomPropertyAttributes("QCAD", "<AnyRequired>", att);
But only in QCAD sessions where this code has been executed.
For some things I can also exploit custom properties of Blocks or Layers.
And those are fairly ‘hidden’ for most users too.
But for my use it’s all about fully immutable and per entity.
Regards,
CVH
On further investigation a custom title seems not to be saved.
However the the dxf file holds one reference but it is not associated with an entity.
Regards,
CVH