Hi, i use GoXmlBindingTransformer to save my GoDocument and i have problem when i save localizable Enum field. Enum field is saved in text instead of number and when the user change the language used, the document cannot be loaded correctly.
Is it possible to save Enum with number instead of text with GoXmlBindingTransformer like the following (assuming BrushStyle and Rectangle was Enum field)?
<MyButton id="1" BrushStyle="Solid" BackgroundType="Rectangle"...
to
<MyButton id="1" BrushStyle="1" BackgroundType="0"...