Skip to content

Commit 2ef0f96

Browse files
Addressed the feedback
1 parent a28d000 commit 2ef0f96

File tree

1 file changed

+1
-1
lines changed
  • Tables/Replace-row-with-multiple-rows/Replace-row-with-multiple-rows

1 file changed

+1
-1
lines changed

Tables/Replace-row-with-multiple-rows/Replace-row-with-multiple-rows/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Open the input Word document
88
using (WordDocument document = new WordDocument(inputFileStream, FormatType.Docx))
99
{
10-
// Find a table with its alternate text (Title property).
10+
// Find a table by the Title property.
1111
WTable table = document.FindItemByProperty(EntityType.Table, "Title", "DataTable") as WTable;
1212
// Check if the table was found.
1313
if (table != null)

0 commit comments

Comments
 (0)