diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/mobile-view.md b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/mobile-view.md index c9096ad89e..9127d4e265 100644 --- a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/mobile-view.md +++ b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/mobile-view.md @@ -13,7 +13,9 @@ The Redaction Tool enables users to permanently mark and remove sensitive conten  -N> In mobile view, the redaction toolbar appears at the bottom of the viewer for thumb access. The mobile layout activates automatically on small screens. +N> In mobile view, the redaction toolbar appears at the bottom of the viewer for thumb-friendly access. + +N> The mobile layout activates automatically on small screens. ## Adding Redaction in Mobile View diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/programmatic-support.md b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/programmatic-support.md index ed474840f6..40252f4cd8 100644 --- a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/programmatic-support.md +++ b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/programmatic-support.md @@ -104,7 +104,7 @@ You can add redaction annotations to a PDF document using the `addAnnotation` me ## Delete redaction annotations programmatically -Redaction annotations can be removed using the `deleteAnnotationById` event or by selecting and deleting them through code. +Redaction annotations can be removed using the `deleteAnnotationById` method or by selecting and deleting them through code. {% tabs %} {% highlight cshtml tabtitle="Standalone" %} @@ -317,7 +317,7 @@ You can configure default properties for redaction annotations (such as fill col The redaction property panel allows users to update annotation properties through the UI. Programmatically, you can invoke the property panel by selecting an annotation and calling the relevant APIs. Properties such as overlay text, font style, and fill color can be updated directly in the panel. - + ## See also diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/search-redact.md b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/search-redact.md index b6391e4d14..49aeb6db53 100644 --- a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/search-redact.md +++ b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/search-redact.md @@ -10,7 +10,7 @@ domainurl: ##DomainURL## # Search text and redact in ASP.NET Core PdfViewer -Search for a keyword in the loaded PDF and automatically add redaction annotations for each match. The example below wires the `extractTextCompleted` event, triggers text extraction, performs a search, and adds redaction annotations for every result. +Search for a keyword in the loaded PDF and automatically add redaction annotations for each match. The example below calls `findTextAsync` to perform the search and then adds a redaction annotation for every returned text bound. N> Prerequisites: Add the PdfViewer control to the ASP.NET Core application and ensure a document is loaded. Confirm the redaction feature is available in the used product version. Applying redaction permanently removes the selected content. diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/toolbar.md b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/toolbar.md index e221e300db..5cd73d93fb 100644 --- a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/toolbar.md +++ b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/toolbar.md @@ -56,7 +56,7 @@ window.onload = function () { Refer to the following image for the toolbar view: - + ## Show or hide the redaction toolbar @@ -66,7 +66,7 @@ Toggle the redaction toolbar using the built‑in toolbar icon or programmatical When `RedactionEditTool` is included in the toolbar settings, clicking the redaction icon in the primary toolbar shows or hides the redaction toolbar. - + ### Display the redaction toolbar programmatically @@ -118,11 +118,11 @@ The following example demonstrates toggling the redaction toolbar programmatical Refer to the following image for details: - + ## See also -* [Adding the redaction annotation in PDF viewer](../redaction/overview) +* [Adding the redaction annotation in PDF viewer](./overview) * [UI interactions](./ui-interaction) * [Programmatic support](./programmatic-support) * [Mobile view](./mobile-view) diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/ui-interaction.md b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/ui-interaction.md index c76678ef33..903a7e265f 100644 --- a/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/ui-interaction.md +++ b/Document-Processing/PDF/PDF-Viewer/asp-net-core/Redaction/ui-interaction.md @@ -23,7 +23,7 @@ Use the redaction tool to draw over content to be hidden. After marking, an anno * **Resizable** – Resize the annotation to cover the required area.  -N> The redaction tool is hidden by default. Customize the toolbar to include it. For instructions, see the [Toolbar customization](../toolbar). +N> The redaction tool is hidden by default. Customize the toolbar to include it. For instructions, see the [Toolbar customization](./toolbar). ## Add redaction annotations using the context menu diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-core/forms/form-constrain.md b/Document-Processing/PDF/PDF-Viewer/asp-net-core/forms/form-constrain.md index da0206f82d..0c8a21fc35 100644 --- a/Document-Processing/PDF/PDF-Viewer/asp-net-core/forms/form-constrain.md +++ b/Document-Processing/PDF/PDF-Viewer/asp-net-core/forms/form-constrain.md @@ -35,10 +35,14 @@ The following flags are supported in the PDF Viewer: ### Make Fields Read Only -The **isReadOnly** property prevents users from modifying a form field through the UI. This is useful for displaying prefilled or calculated values that should not be changed. +The **isReadOnly** property prevents users from modifying a form field through the UI. This is useful for displaying filled or calculated values that should not be changed. {% tabs %} {% highlight cshtml tabtitle="Standalone" %} +