zoukankan      html  css  js  c++  java
  • extract word into string

                string textreadinall;
                object nullobj = System.Reflection.Missing.Value;
                object docFalse = false;
                object docTure = true;
                object fofile = textBox1.Text;
                Word.Application wordApp = new Word.Application();
                Word.Document doc = new Word.Document();
                wordApp.Visible = true;
                doc = wordApp.Documents.Open(ref fofile, ref nullobj, ref nullobj,
                    ref nullobj, ref nullobj, ref nullobj,
                    ref nullobj, ref nullobj, ref nullobj,
                    ref nullobj, ref nullobj, ref nullobj,
                    ref nullobj, ref nullobj, ref nullobj,
                    ref nullobj);
                 doc.ActiveWindow.Selection.WholeStory();
                 doc.ActiveWindow.Selection.Copy();
                 IDataObject data = Clipboard.GetDataObject();
                 textreadinall = data.GetData(DataFormats.Text).ToString();
                 doc.Close(ref docFalse, ref nullobj, ref nullobj);
                 wordApp.Quit(ref nullobj, ref nullobj, ref nullobj);

  • 相关阅读:
    获得客户端的信息
    JavaScript--垃圾回收器
    JavaScript--函数-按值传递
    JavaScript--声明提前
    JavaScript--函数-01
    JavaScript--赋值表达式(typeof-delete-void)
    JavaScript—赋值表达式-1
    JavaScript--机选双色球
    正则表达式的预判
    自定义比较器函数
  • 原文地址:https://www.cnblogs.com/greencolor/p/1650048.html
Copyright © 2011-2022 走看看