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

Update examples for Lotus documents #235

Merged
merged 1 commit into from
Dec 29, 2023
Merged
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
8 changes: 8 additions & 0 deletions Examples/GroupDocs.Viewer.Examples.CSharp.Core/RunExamples.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
using GroupDocs.Viewer.Examples.CSharp.HowTo;
using GroupDocs.Viewer.Examples.CSharp.QuickStart;
using GroupDocs.Viewer.Examples.CSharp.AdvancedUsage.Rendering.RenderingOptionsByDocumentType.RenderingWebDocuments;
using GroupDocs.Viewer.Examples.CSharp.AdvancedUsage.Rendering.RenderingOptionsByDocumentType.RenderingLotusNotesDataFiles;

namespace GroupDocs.Viewer.Examples.CSharp
{
Expand Down Expand Up @@ -199,6 +200,13 @@ static void Main()
//RenderingChmFiles.Run();
#endregion

#region Rendering Lotus messages

//RenderingNsf.Run();
//FilterLotusNotesMessages.Run();

#endregion

#endregion

#region Caching
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,13 @@ static void Main()
//RenderingChmFiles.Run();
#endregion

#region Rendering Lotus messages

//RenderingNsf.Run();
//FilterLotusNotesMessages.Run();

#endregion

#endregion

#region Caching
Expand Down
12 changes: 10 additions & 2 deletions Examples/GroupDocs.Viewer.Examples.CSharp.NET6/RunExamples.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
using GroupDocs.Viewer.Examples.CSharp.HowTo;
using GroupDocs.Viewer.Examples.CSharp.QuickStart;
using GroupDocs.Viewer.Examples.CSharp.AdvancedUsage.Rendering.RenderingOptionsByDocumentType.RenderingWebDocuments;
using GroupDocs.Viewer.Examples.CSharp.AdvancedUsage.Rendering.RenderingOptionsByDocumentType.RenderingLotusNotesDataFiles;

Console.WriteLine("Open RunExamples.cs. \nIn Main() method uncomment the example that you want to run.");
Console.WriteLine("=====================================================");
Expand Down Expand Up @@ -153,9 +154,9 @@
//EnableLayeredRendering.Run();
//RenderOriginalPageSize.Run();
//DisableTextSelection.Run();
DisableFontLicenseVerifications.Run();
//DisableFontLicenseVerifications.Run();

#endregion
#endregion

#region Rendering MS Project Documents

Expand Down Expand Up @@ -192,6 +193,13 @@
//RenderingChmFiles.Run();
#endregion

#region Rendering Lotus messages

//RenderingNsf.Run();
//FilterLotusNotesMessages.Run();

#endregion

#endregion

#region Caching
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public static void Run()
using (Viewer viewer = new Viewer(TestFiles.SAMPLE_NSF))
{
HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources(pageFilePathFormat);
//options.LotusNotesOptions.TextFilter = "April 2015";
options.LotusNotesOptions.AddressFilter = "[email protected]";
options.MailStorageOptions.TextFilter = "April 2015";
options.MailStorageOptions.AddressFilter = "[email protected]";

viewer.View(options);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<Compile Include="$(MSBuildThisFileDirectory)AdvancedUsage\Rendering\RenderingOptionsByDocumentType\RenderingImageFiles\RenderingWmzAndWmf.cs" />
<Compile Include="$(MSBuildThisFileDirectory)AdvancedUsage\Rendering\RenderingOptionsByDocumentType\RenderingImageFiles\RenderingSvgAndSvgz.cs" />
<Compile Include="$(MSBuildThisFileDirectory)AdvancedUsage\Rendering\RenderingOptionsByDocumentType\RenderingImageFiles\RenderingFodgAndOdg.cs" />
<Compile Include="$(MSBuildThisFileDirectory)AdvancedUsage\Rendering\RenderingOptionsByDocumentType\RenderingLotusNotesDataFiles\FilterLotusNotesMessages.cs" />
<Compile Include="$(MSBuildThisFileDirectory)AdvancedUsage\Rendering\RenderingOptionsByDocumentType\RenderingLotusNotesDataFiles\RenderingNsf.cs" />
<Compile Include="$(MSBuildThisFileDirectory)AdvancedUsage\Rendering\RenderingOptionsByDocumentType\RenderingMsProjectDocuments\AdjustTimeUnit.cs" />
<Compile Include="$(MSBuildThisFileDirectory)AdvancedUsage\Rendering\RenderingOptionsByDocumentType\RenderingMsProjectDocuments\GetViewInfoForProjectDocument.cs" />
Expand Down
Loading