Skip to content

Commit fb8fe4e

Browse files
ES-992086-Feedback addressed
1 parent f4f5108 commit fb8fe4e

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

Binary file not shown.

Tables/Find-and-iterate-table-by-title/.NET/Find-and-iterate-table-by-title/Program.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using Syncfusion.DocIO;
22
using Syncfusion.DocIO.DLS;
3-
using Syncfusion.Drawing;
43

54
namespace Find_and_iterate_table_by_title
65
{
@@ -26,9 +25,9 @@ static void Main(string[] args)
2625
//Iterates through the paragraphs of the cell.
2726
foreach (WParagraph paragraph in cell.Paragraphs)
2827
{
29-
//When the paragraph contains text Panda then apply green as back color to cell.
28+
//When the paragraph contains text Panda then insert new text into paragraph.
3029
if (paragraph.Text.Contains("panda"))
31-
cell.CellFormat.BackColor = Color.Coral;
30+
paragraph.AppendText("_Modified");
3231
}
3332
}
3433
}

0 commit comments

Comments
 (0)