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-876618-Added sample for replace text in list paragraph #252

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
82aa978
ES-878340 Renamed sample addressed the feedbacks
VijayadharshiniMathiyalagan Oct 14, 2024
964b1bd
Added sample for replace cell content
VijayadharshiniMathiyalagan Oct 15, 2024
2a2c43f
Merge branch 'SyncfusionExamples:main' into main
VijayadharshiniMathiyalagan Oct 15, 2024
74ba650
Merge branch 'main' of https://github.com/VijayadharshiniMathiyalagan…
VijayadharshiniMathiyalagan Oct 15, 2024
045f6ed
Added sample for replace cell content
VijayadharshiniMathiyalagan Oct 15, 2024
add40a8
Added sample for replace cell content
VijayadharshiniMathiyalagan Oct 15, 2024
fc3eef7
Added replace embedded excel as image sample
VijayadharshiniMathiyalagan Oct 15, 2024
3b6dfd1
ES-881100 - comment and variable name
VijayadharshiniMathiyalagan Oct 15, 2024
9c24b99
Replace embedded excel as image feed backs addressed
VijayadharshiniMathiyalagan Oct 15, 2024
74702a8
Added comments
VijayadharshiniMathiyalagan Oct 15, 2024
a840ca5
ES-887097- Added sample
VijayadharshiniMathiyalagan Oct 15, 2024
f0d4fe8
ES-879193- Added sample
VijayadharshiniMathiyalagan Oct 16, 2024
e53860c
Merge branch 'SyncfusionExamples:main' into main
VijayadharshiniMathiyalagan Oct 16, 2024
eb9b438
Removed Replace cell content
VijayadharshiniMathiyalagan Oct 16, 2024
bb3b143
Merge branch 'main' of https://github.com/VijayadharshiniMathiyalagan…
VijayadharshiniMathiyalagan Oct 16, 2024
c0a8d86
Added replace cell content
VijayadharshiniMathiyalagan Oct 16, 2024
fd5e44f
Reverted
VijayadharshiniMathiyalagan Oct 16, 2024
010b07c
Removed the samples
VijayadharshiniMathiyalagan Oct 16, 2024
2985133
Added
VijayadharshiniMathiyalagan Oct 16, 2024
a000750
Added
VijayadharshiniMathiyalagan Oct 16, 2024
01995e5
Addressed the feedbacks
VijayadharshiniMathiyalagan Oct 16, 2024
c0bae9b
ES-876618-how-to-replace-text-in-a-list-paragraph-Added sample
VijayadharshiniMathiyalagan Oct 17, 2024
58b634e
ES-876618-how-to-replace-text-in-a-list-paragraph-Added sample
VijayadharshiniMathiyalagan Oct 17, 2024
cdc3244
Modified the Input document
VijayadharshiniMathiyalagan Oct 30, 2024
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
@@ -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-text-in-list-paragraph", "Replace-text-in-list-paragraph\Replace-text-in-list-paragraph.csproj", "{CD5449C2-95ED-4D2B-8984-E2D4386503BA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CD5449C2-95ED-4D2B-8984-E2D4386503BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD5449C2-95ED-4D2B-8984-E2D4386503BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD5449C2-95ED-4D2B-8984-E2D4386503BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD5449C2-95ED-4D2B-8984-E2D4386503BA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8AAB32F5-BB2E-4918-B6CC-FF84105D3AC3}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<html>
<body>
<div style="font-family:calibri;color:#3C4D6F;">
<p>Cycling Helmet</p>
</div>
</body>
</html>
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,66 @@
using Syncfusion.DocIO.DLS;
using Syncfusion.DocIO;

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.Automatic))
{
string htmlFilePath = @"Data/File.html";
//Check if the HTML content is valid.
bool isvalidHTML = document.LastSection.Body.IsValidXHTML(htmlFilePath, XHTMLValidationType.None);
if (isvalidHTML)
{
//Define the variable containing the text to search within the paragraph.
string variable = "Youth mountain bike";
//Find the first occurrence of a particular text in the document
TextSelection textSelection = document.Find(variable, true, true);
//Get the found text as single text range
WTextRange textRange = textSelection.GetAsOneRange();
// Get the paragraph containing the found text range
WParagraph paragraph = textRange.OwnerParagraph;
//Get the next sibling element of the current paragraph.
TextBodyItem nextSibling = paragraph.NextSibling as TextBodyItem;
//Get the index of the current paragraph within its parent text body.
int sourceIndex = paragraph.OwnerTextBody.ChildEntities.IndexOf(paragraph);
//Clear all child entities within the paragraph.
paragraph.ChildEntities.Clear();
//Get the list style name from the paragraph.
string listStyleName = paragraph.ListFormat.CurrentListStyle.Name;
//Get the current list level number.
int listLevelNum = paragraph.ListFormat.ListLevelNumber;
//Append HTML content from the specified file to the paragraph.
paragraph.AppendHTML(File.ReadAllText(Path.GetFullPath(htmlFilePath)));
//Reapply the original list style to the paragraph.
paragraph.ListFormat.ApplyStyle(listStyleName);
//Reapply the original list level number.
paragraph.ListFormat.ListLevelNumber = listLevelNum;
//Determine the index of the next sibling if it exists.
int nextSiblingIndex = nextSibling != null ? nextSibling.OwnerTextBody.ChildEntities.IndexOf(nextSibling) : -1;
//Apply the same list style to newly added paragraphs from the HTML content.
for (int k = sourceIndex; k < paragraph.OwnerTextBody.Count; k++)
{
//Stop applying the style if the next sibling is reached.
if (nextSiblingIndex != -1 && k == nextSiblingIndex)
{
break;
}
Entity entity = paragraph.OwnerTextBody.ChildEntities[k];
//Apply the list style only if the entity is a paragraph.
if (entity is WParagraph)
{
(entity as WParagraph).ListFormat.ApplyStyle(listStyleName);
}
else
{
break;
}
}
}
using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"Output/Result.docx"), FileMode.Create, FileAccess.ReadWrite))
{
//Save the modified Word document to the output file stream.
document.Save(outputFileStream, FormatType.Docx);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

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

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

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

</Project>