Skip to content

Commit 65493fa

Browse files
committed
2 parents 851f4cb + 8c42436 commit 65493fa

5 files changed

Lines changed: 34 additions & 36 deletions

File tree

Document-Processing/PDF/PDF-Viewer/maui/Annotation-Collection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ private void OnDocumentLoaded(object sender, EventArgs e)
4242
{% endtabs %}
4343

4444
## AnnotationsLoaded event
45-
The AnnotationsLoaded event occurs after all annotations in the PDF have finished loading, either when the document is opened or when annotations are imported. You can use this event to perform actions once annotations are fully available in the viewer.
45+
The [AnnotationsLoaded](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_AnnotationsLoaded) event occurs after all annotations in the PDF have finished loading, either when the document is opened or when annotations are imported. You can use this event to perform actions once annotations are fully available in the viewer.
4646
The following example explains how to wire and handle the event.
4747

4848
{% tabs %}

Document-Processing/PDF/PDF-Viewer/maui/Annotations-Comment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The PDF Viewer control provides options to add, edit, and delete comments for th
1919
7. Signature annotation
2020

2121
## Showing/Hiding the Comment panel
22-
The built-in Comment Panel in the PDF Viewer displays annotation comments. You can show or hide this panel using the IsCommentsPanelVisible property. The default value of this property is false.
22+
The built-in Comment Panel in the PDF Viewer displays annotation comments. You can show or hide this panel using the [IsCommentsPanelVisible](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_IsCommentsPanelVisible) property. The default value of this property is false.
2323
{% tabs %}
2424
{% highlight c# %}
2525

Document-Processing/PDF/PDF-Viewer/maui/Redaction.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ The following image represents how to perform redactions using the toolbar on mo
3939

4040
## Mark regions for redaction without using the toolbar
4141

42-
You can mark the region for redaction in a PDF document with UI interaction using touch or mouse using the `RedactionMode` property in the [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html). The following steps explain how to mark the region on a PDF.
42+
You can mark the region for redaction in a PDF document with UI interaction using touch or mouse using the [RedactionMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RedactionMode) property in the [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html). The following steps explain how to mark the region on a PDF.
4343

44-
1. Set the `RedactionMode` property of the [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) to Text or Rect. It activates the text-based or selected-area Redaction mode on the control.
44+
1. Set the [RedactionMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RedactionMode) property of the [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) to Text or Rect. It activates the text-based or selected-area Redaction mode on the control.
4545
2. Place your finger (or mouse) on the text in the PDF document, where you want to start redaction.
4646
3. Drag the finger (or cursor) across the text to select.
4747
4. Complete adding the region to the selected text or area by releasing the finger (or cursor).
48-
5. Once you have done that, set the `RedactionMode` to None. It will disable the redaction mode and save the marked region for redaction.
49-
6. You can later redact the marked regions using `RedactAsync` method.
48+
5. Once you have done that, set the [RedactionMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RedactionMode) to None. It will disable the redaction mode and save the marked region for redaction.
49+
6. You can later redact the marked regions using [RedactAsync](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RedactAsync_System_Threading_CancellationToken_) method.
5050

5151
The following code explains how to enable the text-based redaction mode.
5252

@@ -85,7 +85,7 @@ void DisableRedactionMode()
8585

8686
### Add redaction mark on the PDF
8787

88-
You can mark regions for text or specific areas programmatically using the `AddRedactionMark` method of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html), and redact entire pages using the `AddPageRedactionMarks` method. The following example demonstrates how to mark regions for redaction, such as a specific area and page in the PDF document.
88+
You can mark regions for text or specific areas programmatically using the [AddRedactionMark](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_AddRedactionMark_Syncfusion_Maui_PdfViewer_RedactionMark_) method of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html), and redact entire pages using the [AddPageRedactionMarks](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_AddPageRedactionMarks_System_Collections_Generic_List_System_Int32__) method. The following example demonstrates how to mark regions for redaction, such as a specific area and page in the PDF document.
8989

9090
{% tabs %}
9191
{% highlight C# %}
@@ -109,7 +109,7 @@ void AddRedactionMarkOnSpecificRegionAndPages()
109109

110110
### Remove the selected redaction mark on the PDF
111111

112-
You can remove a redaction mark for text, a specific area, or a page programmatically using the `SelectedRedactionMark` property and the `RemoveRedactionMark` method of SfPdfViewer. To remove a redaction mark, select the specific mark you want to delete and pass it to the `RemoveRedactionMark` method. The following example demonstrates how to remove a selected redaction mark from the PDF document.
112+
You can remove a redaction mark for text, a specific area, or a page programmatically using the [SelectedRedactionMark](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_SelectedRedactionMark) property and the [RemoveRedactionMark](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RemoveRedactionMark_Syncfusion_Maui_PdfViewer_RedactionMark_) method of SfPdfViewer. To remove a redaction mark, select the specific mark you want to delete and pass it to the [RemoveRedactionMark](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RemoveRedactionMark_Syncfusion_Maui_PdfViewer_RedactionMark_) method. The following example demonstrates how to remove a selected redaction mark from the PDF document.
113113

114114
{% tabs %}
115115
{% highlight C# %}
@@ -127,21 +127,21 @@ void RemoveSelectedRedactionMark()
127127

128128
### Remove all the redaction marks in the PDF
129129

130-
You can remove all redaction marks from a document programmatically by calling the `RemoveAllRedactionMarks` method. The following example demonstrates how to remove all redaction marks from a PDF document.
130+
You can remove all redaction marks from a document programmatically by calling the [RemoveAllRedactionMarks](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RemoveAllRedactionMarks) method. The following example demonstrates how to remove all redaction marks from a PDF document.
131131

132132
{% tabs %}
133133
{% highlight C# %}
134134
void RemoveAllRedactionMarksDrawn()
135135
{
136-
// Removes all the redaction marks from a PDF document using `RemoveAllRedactionMarks` method of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html).
136+
// Removes all the redaction marks from a PDF document using [RemoveAllRedactionMarks](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RemoveAllRedactionMarks) method of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html).
137137
PdfViewer.RemoveAllRedactionMarks();
138138
}
139139
{% endhighlight %}
140140
{% endtabs %}
141141

142142
### Redact the marked region
143143

144-
You can redact the marked regions by using the `RedactAsync` method of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html). This method redacts all marked regions and saves the document, making the changes irreversible. The following example demonstrates how to redact a marked region or page in a PDF document.
144+
You can redact the marked regions by using the [RedactAsync](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RedactAsync_System_Threading_CancellationToken_) method of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html). This method redacts all marked regions and saves the document, making the changes irreversible. The following example demonstrates how to redact a marked region or page in a PDF document.
145145

146146
{% tabs %}
147147
{% highlight C# %}
@@ -155,7 +155,7 @@ private async void RedactMarkedRegion()
155155

156156
## Customize the default redaction appearance
157157

158-
In redaction mode, the redaction is applied with a default appearance and behavior. You can modify these settings before marking regions on the pages. To define the appearance and behavior, customize the default settings using the `RedactionSettings` property of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html).
158+
In redaction mode, the redaction is applied with a default appearance and behavior. You can modify these settings before marking regions on the pages. To define the appearance and behavior, customize the default settings using the [RedactionSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_RedactionSettings) property of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html).
159159
The following example demonstrates how to obtain the default redaction settings and modify their appearance properties. Similarly, you can modify other available properties.
160160

161161
{% tabs %}

Document-Processing/PDF/PDF-Viewer/maui/liquid-glass-effect.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Follow these steps to enable and configure the Liquid Glass Effect in the [SfPdf
1818

1919
### Step 1: Wrap the control inside glass effect view
2020

21-
To apply the Liquid Glass Effect to Syncfusion® .NET MAUI [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) control, wrap the control inside the `SfGlassEffectView` class.
21+
To apply the Liquid Glass Effect to Syncfusion® .NET MAUI [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) control, wrap the control inside the [SfGlassEffectView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfGlassEffectView.html) class.
2222

23-
For more details, refer to the `Liquid Glass Getting Started documentation`.
23+
For more details, refer to the [Liquid Glass Getting Started documentation](https://help.syncfusion.com/maui/liquid-glass-ui/glassy-controls).
2424

2525
### Step 2: Enable the liquid glass effect on SfPdfViewer
2626

27-
Set the `EnableLiquidGlassEffect` property to `true` in the [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) control to apply the Liquid Glass Effect. When enabled, the effect is also applied to its dependent controls and provides responsive interaction for a smooth and engaging user experience.
27+
Set the [EnableLiquidGlassEffect](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_EnableLiquidGlassEffect) property to `true` in the [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) control to apply the Liquid Glass Effect. When enabled, the effect is also applied to its dependent controls and provides responsive interaction for a smooth and engaging user experience.
2828

2929
### Step 3: Customize the background
3030

Document-Processing/Release-Notes/v32.1.19.md

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,22 @@ documentation: ug
1818
## Test Results
1919

2020

21-
| Component Name | Platform | Test Cases | Passed | Failed | Remarks |
22-
|------------------------------|----------------------------------------------------------|----------------|---------|----------|---------------|
23-
| Calculate | Windows Forms | 138 | 138 | 0 | All Passed |
24-
| Calculate | WPF | 9 | 9 | 0 | All Passed |
25-
| DOCX Editor(Document Editor) | Blazor | 1944 | 1944 | 0 | All Passed |
26-
| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5023 | 5023 | 0 | All Passed |
27-
| Excel Library | .NET | 37836 | 37836 | 0 | All Passed |
28-
| Metafile Renderer | .NET | 863 | 863 | 0 | All Passed |
29-
| PDF Library | .NET | 13703 | 13703 | 0 | All Passed |
30-
| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19374 | 19374 | 0 | All Passed |
31-
| PDF Viewer | .NETMAUI | 14684 | 14684 | 0 | All Passed |
32-
| PdfViewer | WPF | 2998 | 2998 | 0 | All Passed |
33-
| PdfViewer | Windows Forms | 207 | 207 | 0 | All Passed |
34-
| PowerPoint Library | .NET | 54476 | 54476 | 0 | All Passed |
35-
| SfPdfViewer2 | Blazor | 14134 | 14134 | 0 | All Passed |
36-
| SfSpreadsheet | WPF | 2699 | 2699 | 0 | All Passed |
37-
| Spreadsheet | Blazor | 2780 | 2780 | 0 | All Passed |
38-
| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10411 | 10411 | 0 | All Passed |
39-
| Word Library | .NET | 40087 | 40087 | 0 | All Passed |
40-
| Word Library | Java | 4079 | 4079 | 0 | All Passed |
41-
21+
| Component Name | Platform | Test Cases | Passed | Failed | Remarks |
22+
|--------------------|------------------------------------------------------------|--------------|--------|--------|--------------|
23+
| Calculate Library | .NET | 147 | 147 | 0 | All Passed |
24+
| DOCX Editor | Blazor | 1944 | 1944 | 0 | All Passed |
25+
| DOCX Editor | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5023 | 5023 | 0 | All Passed |
26+
| Excel Library | .NET | 37836 | 37836 | 0 | All Passed |
27+
| Metafile Renderer | .NET | 863 | 863 | 0 | All Passed |
28+
| PDF Library | .NET | 13703 | 13703 | 0 | All Passed |
29+
| PDF Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19374 | 19374 | 0 | All Passed |
30+
| PDF Viewer | .NET MAUI | 14684 | 14684 | 0 | All Passed |
31+
| PDF Viewer | WPF | 2998 | 2998 | 0 | All Passed |
32+
| PDF Viewer | Windows Forms | 207 | 207 | 0 | All Passed |
33+
| PDF Viewer | Blazor | 14134 | 14134 | 0 | All Passed |
34+
| PowerPoint Library | .NET | 54476 | 54476 | 0 | All Passed |
35+
| Spreadsheet | WPF | 2699 | 2699 | 0 | All Passed |
36+
| Spreadsheet | Blazor | 2780 | 2780 | 0 | All Passed |
37+
| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10411 | 10411 | 0 | All Passed |
38+
| Word Library | .NET | 40087 | 40087 | 0 | All Passed |
39+
| Word Library | Java | 4079 | 4079 | 0 | All Passed |

0 commit comments

Comments
 (0)