Skip to content

Commit fc19fa7

Browse files
committed
Addressed the feedback and included the you tube video
1 parent 9321ea8 commit fc19fa7

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

Document-Processing-toc.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1590,6 +1590,7 @@
15901590
<li><a href="/document-processing/pdf/pdf-viewer/maui/Magnification">Magnification</a></li>
15911591
<li><a href="/document-processing/pdf/pdf-viewer/maui/Text-Search">Text Search</a></li>
15921592
<li><a href="/document-processing/pdf/pdf-viewer/maui/Text-Selection">Text Selection</a></li>
1593+
<li><a href="/document-processing/pdf/pdf-viewer/maui/Redaction">Redaction</a></li>
15931594
<li><a href="/document-processing/pdf/pdf-viewer/maui/Form-Filling">Form Filling</a></li>
15941595
<li>
15951596
<a href="/document-processing/pdf/pdf-viewer/maui/Annotations-Overview">Annotations</a>
-317 KB
Loading
-985 KB
Loading

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You can mark the region for redaction in a PDF document with UI interaction usin
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).
4848
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 region programmatically.
49+
6. You can later redact the marked regions using `RedactAsync` method.
5050

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

@@ -59,7 +59,7 @@ void EnableTextBasedRedactionMode()
5959
PdfViewer.RedactionMode = RedactionMode.Text;
6060
}
6161

62-
// Enable or activate the selected-area redaction mode.
62+
// Enable or activate the area redaction mode.
6363
void EnableSelectedAreaRedactionMode()
6464
{
6565
// Set the redaction mode to rect using the [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) instance.
@@ -113,7 +113,7 @@ You can remove a redaction mark for text, a specific area, or a page programmati
113113

114114
{% tabs %}
115115
{% highlight C# %}
116-
void RemoveSpecificRedactionMark()
116+
void RemoveSelectedRedactionMark()
117117
{
118118
// Check if any redaction mark is currently selected.
119119
if (PdfViewer.SelectedRedactionMark != null)
@@ -146,10 +146,10 @@ You can redact the marked regions by using the `RedactAsync` method of [SfPdfVie
146146
{% tabs %}
147147
{% highlight C# %}
148148
private async void RedactMarkedRegion()
149-
{
149+
{
150150
// Apply redaction to all marked regions in the PDF document.
151151
await PdfViewer.RedactAsync();
152-
}
152+
}
153153
{% endhighlight %}
154154
{% endtabs %}
155155

@@ -160,7 +160,7 @@ The following example demonstrates how to obtain the default redaction settings
160160

161161
{% tabs %}
162162
{% highlight C# %}
163-
private void CustomizeDefaultRedactionSettings_Button_Clicked(object sender, EventArgs e)
163+
void CustomizeDefaultRedactionSettings()
164164
{
165165
// Access the default redaction settings from the SfPdfViewer instance and modify the default appearance properties.
166166
PdfViewer.RedactionSettings.MarkerBorderColor = Colors.Blue; // Border color for the marked region.

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ keywords: .net maui pdf viewer, .net maui view pdf, pdf viewer in .net maui, .ne
1010

1111
# Electronic Signature in .NET MAUI PDF Viewer (SfPdfViewer)
1212

13-
The electronic signature feature of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) allows you to add, remove signatures in the PDF document. This section will go through the various types and functions available in PDF Viewer for working with signature.
13+
The electronic signature feature of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) allows you to add, remove signatures in the PDF document. This section will go through the various types and functions available in PDF Viewer for working with signature.
14+
15+
You can also watch our video tutorial below to learn about working with electronic signatures.
16+
17+
<style>#MAUISfPdfViewerVideoTutorial{width : 90% !important; height: 400px !important }</style> <iframe id='MAUISfPdfViewerVideoTutorial' src='https://www.youtube.com/embed/XinSyPuloqw'></iframe>
1418

1519
## Types of electronic signature
1620

0 commit comments

Comments
 (0)