Skip to content

Commit 54f6996

Browse files
Merge pull request #295 from VijayadharshiniMathiyalagan/ES-891627-How-to-copy-the-format-of-the-text-from-an-RTF-string-and-apply-it-to-text
Add sample for Copy the format of the text from an RTF string and apply it to text
2 parents c34bc82 + 180304c commit 54f6996

File tree

5 files changed

+107
-0
lines changed

5 files changed

+107
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.12.35417.141 d17.12
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Copy-RTF-format-and-apply-to-text", "Copy-RTF-format-and-apply-to-text\Copy-RTF-format-and-apply-to-text.csproj", "{E3A12D6C-A0E3-47FD-9318-7AA7B7179C4F}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{E3A12D6C-A0E3-47FD-9318-7AA7B7179C4F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{E3A12D6C-A0E3-47FD-9318-7AA7B7179C4F}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{E3A12D6C-A0E3-47FD-9318-7AA7B7179C4F}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{E3A12D6C-A0E3-47FD-9318-7AA7B7179C4F}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net8.0</TargetFramework>
6+
<RootNamespace>Copy_RTF_format_and_apply_to_text</RootNamespace>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<Nullable>enable</Nullable>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Syncfusion.DocIO.Net.Core" Version="*" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<None Update="Data\Template.docx">
17+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
18+
</None>
19+
<None Update="Output\.gitkeep">
20+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
21+
</None>
22+
</ItemGroup>
23+
24+
</Project>
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+


Paragraphs/Copy-RTF-format-and-apply-to-text/Copy-RTF-format-and-apply-to-text/Program.cs

Lines changed: 60 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)