Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ES-883114 Added sample for replace cell content #254

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@


using Microsoft.VisualBasic.FileIO;
using Syncfusion.DocIO;
using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;

namespace Replace_text_heading_paragraphs
Expand All @@ -10,24 +7,26 @@ class Program
{
static void Main(string[] args)
{
using (FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Input.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
using (FileStream inputFileStream = new FileStream(Path.GetFullPath(@"Data/Input.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
{
//Opens an existing Word document.
using (WordDocument document = new WordDocument(fileStreamPath, FormatType.Automatic))
//Opens the input Word document.
using (WordDocument document = new WordDocument(inputFileStream, FormatType.Automatic))
{
for (int headingLevel = 1; headingLevel < 10; headingLevel++)
{
//Find headings based on the levels and endnote by paragraph in Word document.
List<Entity> headings = document.FindAllItemsByProperty(EntityType.Paragraph, "StyleName", "Heading " + headingLevel);
//Replace the headings with text.
//Iterate through all headings in the list.
for (int index = 0; index < headings.Count; index++)
{
//Cast the current heading to WParagraph.
WParagraph paragraph = headings[index] as WParagraph;
//Remove all child elements from the paragraph.
paragraph.ChildEntities.Clear();
paragraph.AppendText("Replaced Heading"+headingLevel+" text");
//Add new text to replace the heading content.
paragraph.AppendText("Replaced Heading" + headingLevel + " text");
}
}
//Creates file stream.
using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"Output/Result.docx"), FileMode.Create, FileAccess.ReadWrite))
{
//Saves the Word document to file stream.
Expand Down
25 changes: 25 additions & 0 deletions Tables/Find-table-and-add-row/Find-table-and-add-row.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.12.35309.182
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Find-table-and-add-row", "Find-table-and-add-row\Find-table-and-add-row.csproj", "{E8C23293-ABC9-4C54-81BA-9C5FBA6D85C1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E8C23293-ABC9-4C54-81BA-9C5FBA6D85C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E8C23293-ABC9-4C54-81BA-9C5FBA6D85C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E8C23293-ABC9-4C54-81BA-9C5FBA6D85C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E8C23293-ABC9-4C54-81BA-9C5FBA6D85C1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {EC6BCFD8-E759-47DE-BC97-AC492B3D6DF8}
EndGlobalSection
EndGlobal
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Find_table_and_add_row</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Syncfusion.DocIO.Net.Core" Version="*" />
</ItemGroup>

<ItemGroup>
<None Update="Data\Template.docx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Output\.gitkeep">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
28 changes: 28 additions & 0 deletions Tables/Find-table-and-add-row/Find-table-and-add-row/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;


//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("Mgo+DSMBMAY9C3t2UlhhQlNHfV5DQmBWfFN0QXNYfVRwdF9GYEwgOX1dQl9nSXZTc0VlWndfcXNSQWc=");

using (FileStream inputFileStream = new FileStream(Path.GetFullPath("Data/Template.docx"), FileMode.Open, FileAccess.ReadWrite))
{
// Open the input Word document
using (WordDocument document = new WordDocument(inputFileStream, FormatType.Docx))
{
// Find a table with its alternate text (Title property).
WTable table = document.FindItemByProperty(EntityType.Table, "Title", "DataTable") as WTable;
// Check if the table exists.
if (table != null)
{
// Add a new row to the table.
table.AddRow();
}

using (FileStream outputFileStream = new FileStream(Path.GetFullPath("Output/Result.docx"), FileMode.Create, FileAccess.Write))
{
// Save the modified document to the output file stream.
document.Save(outputFileStream, FormatType.Docx);
}
}
}
25 changes: 25 additions & 0 deletions Tables/Replace-cell-content/.NET/Replace-cell-content.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.12.35309.182
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Replace-cell-content", "Replace-cell-content\Replace-cell-content.csproj", "{EE3F9583-BEBA-4C9C-B8F2-D395B3A083AF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EE3F9583-BEBA-4C9C-B8F2-D395B3A083AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EE3F9583-BEBA-4C9C-B8F2-D395B3A083AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EE3F9583-BEBA-4C9C-B8F2-D395B3A083AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EE3F9583-BEBA-4C9C-B8F2-D395B3A083AF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {97EA4ED6-8BFF-4FE4-9D48-298CDAFC3065}
EndGlobalSection
EndGlobal
Binary file not shown.
31 changes: 31 additions & 0 deletions Tables/Replace-cell-content/.NET/Replace-cell-content/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;

using (FileStream inputFileStream = new FileStream(Path.GetFullPath("Data/Template.docx"), FileMode.Open, FileAccess.ReadWrite))
{
//Open the template Word document.
using (WordDocument document = new WordDocument(inputFileStream, FormatType.Docx))
{
//Retrieve the first section of the document.
IWSection section = document.LastSection;
//Get the first table in the section.
WTable table = section.Body.Tables[0] as WTable;
//Access the instance of the cell (second row, second cell).
WTableCell cell1 = table[1, 1];
//Access the instance of the cell (third row, third cell).
WTableCell cell2 = table[2, 2];
//Clear the contents of the cell (second row, second cell).
cell1.ChildEntities.Clear();
//Add a new paragraph with content to the cell (second row, second cell).
cell1.AddParagraph().AppendText("Adventure");
//Clear the contents of the cell (third row, third cell).
cell2.ChildEntities.Clear();
//Add a new paragraph with content to the cell (third row, third cell).
cell2.AddParagraph().AppendText("Cycle");
//Save the modified document.
using (FileStream outputFileStream = new FileStream(Path.GetFullPath("Output/Result.docx"), FileMode.Create, FileAccess.Write))
{
document.Save(outputFileStream, FormatType.Docx);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Replace_Cell_Content</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Syncfusion.DocIO.Net.Core" Version="*" />
</ItemGroup>

<ItemGroup>
<None Update="Data\Template.docx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Output\.gitkeep">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.12.35309.182
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Replace-row-with-multiple-rows", "Replace-row-with-multiple-rows\Replace-row-with-multiple-rows.csproj", "{7D07A56C-8B23-4CFE-9E8C-903C5C1EF6CB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7D07A56C-8B23-4CFE-9E8C-903C5C1EF6CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7D07A56C-8B23-4CFE-9E8C-903C5C1EF6CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7D07A56C-8B23-4CFE-9E8C-903C5C1EF6CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7D07A56C-8B23-4CFE-9E8C-903C5C1EF6CB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F9812314-7D24-42E7-8090-5B2969EB47E9}
EndGlobalSection
EndGlobal
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;
using System.Dynamic;

using (FileStream inputFileStream = new FileStream(Path.GetFullPath("Data/Template.docx"), FileMode.Open, FileAccess.ReadWrite))
{
// Open the input Word document
using (WordDocument document = new WordDocument(inputFileStream, FormatType.Docx))
{
// Find a table with its alternate text (Title property).
WTable table = document.FindItemByProperty(EntityType.Table, "Title", "DataTable") as WTable;
// Check if the table was found.
if (table != null)
{
// Get the second row of the table.
WTableRow secondRow = table.Rows[1];
// Insert data into the cells of the second row.
InsertDataToCells(secondRow);
// Add dynamic rows starting at index 2, based on the second row.
AddDyamicRows(table, 2, secondRow);
}

using (FileStream outputFileStream = new FileStream(Path.GetFullPath("Output/Result.docx"), FileMode.Create, FileAccess.Write))
{
// Save the modified document to the output file stream.
document.Save(outputFileStream, FormatType.Docx);
}
}
}

/// <summary>
/// Insert data into the cells of a specified table row.
/// </summary>
void InsertDataToCells(WTableRow row)
{
// List of placeholder data to insert into the cells.
List<string> data = new List<string> { "<<Data1>>", "<<Data2>>", "<<Data3>>", "<<Data4>>" };
int count = 0;
// Iterate through each cell in the specified row.
foreach (WTableCell cell in row.Cells)
{
// Assign data to the particular cell.
cell.Paragraphs[0].Text = data[count];
count++;
}
}

/// <summary>
/// Add dynamic rows to a specified table at a certain index.
/// </summary>
void AddDyamicRows(WTable table, int index, WTableRow row)
{
// Create a list of dynamic row details.
IEnumerable<dynamic> rowsDetails = CreateDyamicRows();
// Iterate through each dynamic row detail.
foreach (dynamic rowDetails in rowsDetails)
{
// Retrieve cell content for the new row.
List<string> cellDetails = GetListOfCellValue(rowDetails);
// Clone the second row to create a new row.
WTableRow newRow = row.Clone();
// Iterate through the cells of the cloned row.
for (int i = 0; i < newRow.Cells.Count; i++)
{
// Get the cell at specific from the cloned row.
WTableCell wTableCell = newRow.Cells[i];
// Modify the paragraph text of the cell with the corresponding cell detail.
wTableCell.Paragraphs[0].Text = cellDetails[i];
}
// Insert the newly created row at the specified index.
table.Rows.Insert(index, newRow);
// Increment the index for the next dynamic row.
index++;
}
}

/// <summary>
/// Create dynamic rows with sample cell data.
/// </summary>
IEnumerable<dynamic> CreateDyamicRows()
{
// Create a list of dynamic row details.
List<dynamic> rowDetails = new List<dynamic>();

// Add dynamic cells to the row details list.
rowDetails.Add(CreateDynamicCells("<<Data5>>", "<<Data6>>", "<<Data7>>", "<<Data8>>"));
rowDetails.Add(CreateDynamicCells("<<Data9>>", "<<Data10>>", "<<Data11>>", "<<Data12>>"));
rowDetails.Add(CreateDynamicCells("<<Data13>>", "<<Data14>>", "<<Data15>>", "<<Data16>>"));
rowDetails.Add(CreateDynamicCells("<<Data17>>", "<<Data18>>", "<<Data19>>", "<<Data20>>"));
// Return the list of dynamic row details.
return rowDetails;
}

/// <summary>
/// Create dynamic cell data.
/// </summary>
dynamic CreateDynamicCells(string cell1, string cell2, string cell3, string cell4)
{
// Create a new ExpandoObject for dynamic properties.
dynamic dynamicOrder = new ExpandoObject();

// Assign values to the dynamic object properties.
dynamicOrder.Cell1 = cell1;
dynamicOrder.Cell2 = cell2;
dynamicOrder.Cell3 = cell3;
dynamicOrder.Cell4 = cell4;
// Return the dynamic object.
return dynamicOrder;
}

/// <summary>
/// Convert the dynamic values to a list of strings.
/// </summary>
List<string> GetListOfCellValue(dynamic rowDetails)
{
List<string> cellDetails = new List<string>();

// Add each dynamic cell value to the list.
cellDetails.Add(rowDetails.Cell1);
cellDetails.Add(rowDetails.Cell2);
cellDetails.Add(rowDetails.Cell3);
cellDetails.Add(rowDetails.Cell4);
// Return the list of cell details.
return cellDetails;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Replace_row_with_multiple_rows</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Syncfusion.DocIO.Net.Core" Version="*" />
</ItemGroup>

<ItemGroup>
<None Update="Data\Template.docx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Output\.gitkeep">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34322.80
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mergemultiple-Word-files-in-same-page", "Mergemultiple-Word-files-in-same-page\Mergemultiple-Word-files-in-same-page.csproj", "{C790F761-62BA-49E1-8FF6-E15165CB08C1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Merge-multiple-Word-files-in-same-page", "Merge-multiple-Word-files-in-same-page\Merge-multiple-Word-files-in-same-page.csproj", "{C790F761-62BA-49E1-8FF6-E15165CB08C1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Loading