Hello,
I have a feature defined in Geospatial Administrator.
I'd like to add a read-only item to its Edit dialog. I'd like to present in this field a combination of feature's properties (i.e. in PowerMap XM).
For example:
There is a feature called 'Parcel'. It has 3 properties: 'Teryt', 'District' and 'Number'.
Their values are:
Teryt='123456'
District='0001'
Number='456/54'
And what I need is a concatenation of them: '123456.0001.456/54'
Thanks for help in advance
Myzzard
You're welcome Myzzard.
I will file a TR to update the documentation for this initial value type and other types in the list that are not documented.
In the meantime, look in the "Bentley Map Customization Guide" at index item "ValueType Enum". These are the value types used for the "Initial Values - Value Types" and for the InputValue VBA-XFT object. See description for ValueType_CONCATSTRING.
Chris,
Thanks for your quick help. I succeeded creating this new item.
Where can I find more detailed description of Geospatial Administrator possibilities? Help file is rather general.
For example: I didn't know about 'concatstr' value type.
Regards,
Hello Myzzard,
In the attached XFM schema file, there is an example of your request. See the Operation property named "Label" for the Parcel. The Label item uses an "editing" initial value of type "concaststr" with value:
Parcel:Teryt+'.'+Parcel:District+'.'+Parcel:Number
I tried this example using Bentley Map XM.
Chris