Replacing the word in the Word template is equivalent to modifying the word content (saving the original word style)

Source: Internet
Author: User

// Replacing the word in the Word template is equivalent to modifying the word content.
Private void wordreplace (string filepath, string strold, string strnew)
{
Microsoft. Office. InterOP. Word. _ application APP = new Microsoft. Office. InterOP. Word. applicationclass ();
Object nullobj = system. reflection. Missing. value;
Object File = filepath;
Microsoft. Office. InterOP. Word. _ document DOC = app. Documents. Open (
Ref file, 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) as Microsoft. Office. InterOP. Word. _ document;

App. selection. Find. clearformatting ();
App. selection. Find. Replacement. clearformatting ();
App. selection. Find. Text = strold;
App. selection. Find. Replacement. Text = strnew;

Object objreplace = Microsoft. Office. InterOP. Word. wdreplace. wdreplaceall;
App. selection. Find. Execute (ref nullobj,
Ref nullobj, ref nullobj, ref nullobj,
Ref nullobj, ref nullobj, ref nullobj,
Ref nullobj, ref objreplace, ref nullobj,
Ref nullobj, ref nullobj, ref nullobj );

// Format
// Doc. content. AutoFormat ();
// Clear the range object
// Microsoft. Office. InterOP. Word. range = NULL;

// Save
Doc. Save ();

// Microsoft. Office. InterOP. Word. range = NULL;
Doc. Close (ref nullobj, ref nullobj, ref nullobj );

App. Quit (ref nullobj, ref nullobj, ref nullobj );
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.