IDgnECTypeAdapter::GetStandardValues fills a StandardValuesCollection from the MstnPropertyFormatter schema. Here's a fragment of XML...
<StandardValues xmlns="EditorCustomAttributes.01.00"> <ValueMap> <ValueMap> <Value>-1</Value> <DisplayString>(Use Active Master Units)</DisplayString> </ValueMap> ... 16 more </ValueMap> </StandardValues>
But StandardValuesCollection is a bvector of WString. What it gets is a list of DisplayStrings. It ignores the integer Value element.
Are the integer Value elements relevant, and if so how do I obtain them?