Hello all, |
Re: How to abstract the attribute description info
The code to get the attribute description is quite simple and well documented in the DXL Reference Manual. Once you have the description, you can display this in a read-only DBE text box. AttrDef ad string attrName string attrDescription attrName = "<enter attribute name here>" //enter the name of the attribute ad = find(current Module, attrName) attrDescription = ad.description print attrDescription
Paul Miller
|
Re: How to abstract the attribute description info SystemAdmin - Mon Jun 25 18:44:45 EDT 2012
The code to get the attribute description is quite simple and well documented in the DXL Reference Manual. Once you have the description, you can display this in a read-only DBE text box. AttrDef ad string attrName string attrDescription attrName = "<enter attribute name here>" //enter the name of the attribute ad = find(current Module, attrName) attrDescription = ad.description print attrDescription
Paul Miller
|