摘要:
1 需要添加对Microsoft Visio 11.0 Type Library的引用(COM组件)。代码如下: 2 using Microsoft.Office.Interop.Visio; 3 private void Button1_Click(object sender, System.EventArgs e) 4 { 5 Document doc=null; 6 Cell cell=null; 7 ApplicationClass app=new ApplicationC... 阅读全文
摘要:
做过Visio开发的人知道,Visio中的属性值也就是Cell.Formula的值通常包含两对双引号的(如""XX""), 如果要将属性的值转换正常的字符串值,那么需要去除双引号。因此从Visio的Cell的Formula值中得到的字符串需要经过下面方法处理一下: public static string FormulaStringToString(string formula) { const string OneQuote = "\""; const string TwoQuotes = "\"\&q 阅读全文