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
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
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