通过 C# 在 Enterprise Architect 中将图表布局从向下更改为向上 API
Changing the Diagram Layout from down to up in Enterprise Architect via C# API
如何通过 C# 更改 Enterprise Architect 中图表的布局方向以获得如图所示的相同结果:
您需要设置 t_diagram.StyleEx
以便它包含 d=<n>;
其中 <n>
是
Up = 0, Down = 1, Left = 2, Right = 3
(另见我的 Inside EA 书第 61 页)
如何通过 C# 更改 Enterprise Architect 中图表的布局方向以获得如图所示的相同结果:
您需要设置 t_diagram.StyleEx
以便它包含 d=<n>;
其中 <n>
是
Up = 0, Down = 1, Left = 2, Right = 3
(另见我的 Inside EA 书第 61 页)