Skip to content

DOCINFRA-2341_merged_using_automation #1209

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

Open
wants to merge 8 commits into
base: development
Choose a base branch
from
3 changes: 2 additions & 1 deletion WindowsForms-toc.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion WindowsForms/Calculation-Engine/Working-with-CalcEngine.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ Gets or sets whether the `CalcEngine` throws any exception that occurs during th

### RethrowParseExceptions

The default value of `RethrowParseExceptions` is false.If the value is set as true, CalcEngine throws an exception from [FormulaErrorStrings](https://help.syncfusion.com/windowsforms/calculation-engine/parse-and-compute#error-messages) collection. If the value is set as false, and the parsed formula is not a valid one,it returns error message from [ErrorStrings]((https://help.syncfusion.com/windowsforms/calculation-engine/parse-and-compute#error-messages))collection without throwing exception.
The default value of `RethrowParseExceptions` is false.If the value is set as true, CalcEngine throws an exception from [FormulaErrorStrings](https://help.syncfusion.com/windowsforms/calculation-engine/parse-and-compute#error-messages) collection. If the value is set as false, and the parsed formula is not a valid one,it returns error message from [ErrorStrings](https://help.syncfusion.com/windowsforms/calculation-engine/parse-and-compute#error-messages)collection without throwing exception.

### SupportLogicalOperators

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified WindowsForms/Licensing/licensing-images/generate-license.png
35 changes: 35 additions & 0 deletions WindowsForms/PDF-Viewer/Working with ErrorOccured Event.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
layout: post
title: Working with ErrorOccured Event in Windows Forms PDF Viewer | Syncfusion®
description: Learn about Working with ErrorOccured Event in Syncfusion® Windows Forms PDF Viewer (PdfViewerControl) control and more details.
platform: windowsforms
control: PdfViewerControl
documentation: ug
---

# Working with ErrorOccured Event in Windows Forms PDF Viewer (PdfViewerControl)

PDF Viewer provides support to identify the error using the ErrorOccured Event,The ErrorOccurred[
https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_Forms_PdfViewer_PdfViewerControl_ErrorOccurred
] event in the PdfViewerControl is triggered whenever an error occurs within the control. This event provides an opportunity to handle errors effectively by allowing developers to log the details or display appropriate messages to users when an issue arises within the PdfViewerControl[https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.PdfViewer.PdfViewerControl.html].

{% tabs %}
{% highlight c# %}

public Form1()
{
InitializeComponent();
PdfViewer.ErrorOccurred += PdfViewer_ErrorOccurred;
}

private void PdfViewer_ErrorOccurred(object sender, ErrorOccurredEventArgs e)
{
// Log error message
Console.WriteLine("Error occurred in PdfViewerControl: " + e.Message);

// Display error message to the user
MessageBox.Show("An error occurred while viewing the PDF: " + e.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}

{% endhighlight %}
{% endtabs %}
16 changes: 16 additions & 0 deletions WindowsForms/Release-notes/v29.1.38.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Essential Studio for Windows Forms Weekly Nuget Release Release Notes
description: Essential Studio for Windows Forms Weekly Nuget Release Release Notes
platform: windowsforms
documentation: ug
---

# Essential Studio for Windows Forms Release Notes

{% include release-info.html date="April 15, 2025" version="v29.1.38" %}

{% directory path: _includes/release-notes/v29.1.38 %}

{% include {{file.url}} %}

{% enddirectory %}
16 changes: 16 additions & 0 deletions WindowsForms/Release-notes/v29.1.39.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Essential Studio for Windows Forms Weekly Nuget Release Release Notes
description: Essential Studio for Windows Forms Weekly Nuget Release Release Notes
platform: windowsforms
documentation: ug
---

# Essential Studio for Windows Forms Release Notes

{% include release-info.html date="April 22, 2025" version="v29.1.39" %}

{% directory path: _includes/release-notes/v29.1.39 %}

{% include {{file.url}} %}

{% enddirectory %}