Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Replaces this match with the specified string.

Signature
C#
C#
 public void Replace(System.String replaceWith)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub Replace(ByVal replaceWith As String)
{signature}
{parameters}
{param:replaceWith}The replacement string.{param}
{example}{code:csharp|title=C#}
Parameters
Param
replaceWith
replaceWith

The replacement string.

Example
Code Block
csharp
csharp
titleC#


          WordApplication app = new WordApplication();
          Document doc = app.Open(@"C:\somedoc.doc");
          IEnumerator searcherator = doc.Search("crimson");
          while (searcherator.MoveNext())
          {
               SearchMatch match = (SearchMatch)searcherator.Current;
               match.Replace("red");
          }
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          Dim app As New WordApplication()
          Dim doc As Document = app.Open("C:\somedoc.doc")
          Dim searcherator As IEnumerator = doc.Search("crimson")
          While searcherator.MoveNext()
               Dim match As SearchMatch = searcherator.Current
               match.Replace("red")
          End While
        
{code} {example}