Not able to save units as mm & DefaultTemplateDrawingStandard in fileoptions using API in C#

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello API team,
I am able to set the required values to file options in Application options using API.
m_inventorApplication.FileOptions.DefaultTemplateUnitsAreInches = false;
m_inventorApplication.FileOptions.DefaultTemplateDrawingStandard =
Inventor.DraftingStandardEnum.kANSI_DraftingStandard;
The above changes are reflecting in Inventor tool but not able to see the units as mm in the assembly document as like in the attachment (pic-1 but expecting as like in pic-2 which in the same attachment.)
I tried to save the file options using the below code (it is replicating the clicking on "Ok" and "apply" button ApplicationOptions window) but get an error "Member not found".
m_inventorApplication.SaveOptions.DefaultToSaveForAPIChanges = true;
m_inventorApplication.SaveOptions.PromptSaveForAPIChanges = false;
Request your solution how to fix it.
Thanks in advance.