Skip to content

Commit 71a6427

Browse files
committed
GroupDocs.Conversion for .NET 25.2.1 samples update
1 parent d01de88 commit 71a6427

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

Examples/GroupDocs.Conversion.Examples.CSharp.Core/GroupDocs.Conversion.Examples.CSharp.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PackageReference Include="AWSSDK.Core" Version="3.7.402.9" />
1818
<PackageReference Include="AWSSDK.S3" Version="3.7.415.8" />
1919
<PackageReference Include="Azure.Storage.Blobs" Version="12.23.0" />
20-
<PackageReference Include="GroupDocs.Conversion" Version="25.2.0" />
20+
<PackageReference Include="GroupDocs.Conversion" Version="25.2.1" />
2121
<PackageReference Include="StackExchange.Redis" Version="2.8.24" />
2222
</ItemGroup>
2323

Examples/GroupDocs.Conversion.Examples.CSharp/AdvancedUsage/Loading/LoadOptionsByDocumentType/Presentation/ConvertPresentationByHidingComments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void Run()
1717

1818
Func<LoadContext, LoadOptions> getLoadOptions = loadContext => new PresentationLoadOptions
1919
{
20-
HideComments = true
20+
CommentsPosition = PresentationCommentsPosition.None
2121
};
2222

2323
using (Converter converter = new Converter(Constants.PPTX_WITH_NOTES, getLoadOptions))

Examples/GroupDocs.Conversion.Examples.CSharp/AdvancedUsage/Loading/LoadOptionsByDocumentType/Spreadsheet/ConvertSpreadsheetAndHideComments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void Run()
1717

1818
Func<LoadContext, LoadOptions> getLoadOptions = loadContext => new SpreadsheetLoadOptions
1919
{
20-
HideComments = true,
20+
PrintComments = SpreadsheetPrintComments.PrintNoComments,
2121
OnePagePerSheet = true,
2222
};
2323

Examples/GroupDocs.Conversion.Examples.CSharp/AdvancedUsage/Loading/LoadOptionsByDocumentType/WordProcessing/ConvertWordProcessingByHidingComments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void Run()
1717

1818
Func<LoadContext, LoadOptions> getLoadOptions = loadContext => new WordProcessingLoadOptions
1919
{
20-
HideComments = true
20+
CommentDisplayMode = WordProcessingCommentDisplay.Hidden
2121
};
2222

2323
using (Converter converter = new Converter(Constants.SAMPLE_DOCX_WITH_TRACKED_CHANGES, getLoadOptions))

Examples/GroupDocs.Conversion.Examples.CSharp/AdvancedUsage/Loading/LoadOptionsByDocumentType/WordProcessing/ConvertWordProcessingBySpecifyingFontSubstitution.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public static void Run()
1919

2020
Func<LoadContext, LoadOptions> getLoadOptions = loadContext => new WordProcessingLoadOptions
2121
{
22-
AutoFontSubstitution = false,
2322
DefaultFont = "Helvetica",
2423
FontSubstitutes = new List<FontSubstitute>
2524
{

0 commit comments

Comments
 (0)