分享到: 百度 更多
摘要: 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... 阅读全文
posted @ 2012-11-28 11:22 黑马_Summer 阅读(603) 评论(0) 推荐(0) 编辑
摘要: 做过Visio开发的人知道,Visio中的属性值也就是Cell.Formula的值通常包含两对双引号的(如""XX""), 如果要将属性的值转换正常的字符串值,那么需要去除双引号。因此从Visio的Cell的Formula值中得到的字符串需要经过下面方法处理一下: public static string FormulaStringToString(string formula) { const string OneQuote = "\""; const string TwoQuotes = "\"\&q 阅读全文
posted @ 2012-11-28 11:18 黑马_Summer 阅读(1441) 评论(0) 推荐(0) 编辑
分享到: 百度 更多