How can I set the implicit system used in a diagram to be metric ?
None of the solution works, DrawRectangle method always interprets the parameters as inches.
Diagram diagram = new Diagram();
//Solution 1
diagram.Me…...True; //Solution 2 Page srcPage = diagram.Pages[0]; srcPage.PageSheet...= MeasureConst.MM; diagram.Pages[0].DrawRectangle(1, 1, 2, 1);...