国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#獲取Word文檔中所有表格的實現(xiàn)代碼分享

2020-01-24 02:26:48
字體:
供稿:網(wǎng)友

今天從數(shù)據(jù)庫生成了一份數(shù)據(jù)字典,但是沒有備注,所以需要程序把表格都讀出來。用到了下面的代碼,親測可用~~

object oFileName = @"F:/數(shù)據(jù)庫.docx";object oReadOnly = false ;object oMissing = System.Reflection.Missing.Value; Microsoft.Office.Interop.Word._Application oWord;Microsoft.Office.Interop.Word._Document oDoc;oWord = new Microsoft.Office.Interop.Word.Application();oWord.Visible = false;oDoc = oWord.Documents.Open(ref oFileName, ref oMissing, ref oReadOnly, ref oMissing, ref oMissing,  ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); //MessageBox.Show(oDoc.Tables.Count.ToString());for (int tablePos = 1; tablePos <= oDoc.Tables.Count; tablePos++){  Microsoft.Office.Interop.Word.Table nowTable = oDoc.Tables[tablePos];  string tableMessage = string.Format("第{0}/{1}個表:/n", tablePos, oDoc.Tables.Count);   for (int rowPos = 1; rowPos <= nowTable.Rows.Count; rowPos++)  {    for (int columPos = 1; columPos <= nowTable.Columns.Count; columPos++)    {      tableMessage += nowTable.Cell(rowPos, columPos).Range.Text;      tableMessage = tableMessage.Remove(tableMessage.Length - 2, 2);      tableMessage += "/t";    }     tableMessage += "/n";  }   MessageBox.Show(tableMessage);}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 鹤岗市| 宁德市| 郯城县| 南乐县| 奉节县| 日喀则市| 崇礼县| 凤庆县| 宁德市| 克什克腾旗| 花莲市| 南乐县| 巴林左旗| 绥芬河市| 鄂伦春自治旗| 荥经县| 寿光市| 故城县| 重庆市| 通城县| 孟村| 青冈县| 宁南县| 漳浦县| 威远县| 灵寿县| 文成县| 修文县| 平舆县| 乌恰县| 长武县| 乃东县| 改则县| 思茅市| 额济纳旗| 永仁县| 安康市| 雷波县| 淮阳县| 贵港市| 蒙自县|