Skip to content

Commit bb73c7a

Browse files
committed
Update Word/README
1 parent 384f4c1 commit bb73c7a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Word/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,9 @@ var oval = new Openize.Words.IElements.Shape(300, 0, 200, 200,
151151
var groupShape = new Openize.Words.IElements.GroupShape(diamond, oval);
152152
body.AppendChild(groupShape);
153153
doc.Save("WordGroupShape.docx");
154-
```
154+
```
155+
## Word Find and Replace Text
156+
```csharp
157+
var doc = new Openize.Words.Document("sample.docx");
158+
doc.ReplaceText("Original","Replaced");
159+
doc.Save("sample-updated.docx");

0 commit comments

Comments
 (0)