有人可以帮我解决上述问题吗?我已检查 Visio VSTO 网站,但找不到任何访问所需页面属性的代码。
非常感谢。
try
{
var pages = Globals.ThisAddIn.Application.ActiveDocument.Pages;
foreach (var pg in pages)
{
Microsoft.Office.Interop.Visio.Page page = (Microsoft.Office.Interop.Visio.Page)pg;
page. // ?? <- how to access the page setup??
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}