Skip to content

Commit f070055

Browse files
1009185: Resolved the CI failures
1 parent 3d3d186 commit f070055

10 files changed

Lines changed: 47 additions & 150 deletions

Document-Processing/PDF/PDF-Viewer/react/Redaction/ui-interaction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Redaction UI interactions in React PDF Viewer | Syncfusion
4-
description: Learn about UI interactions in Redaction annotations of the Syncfusion React PDF Viewer component.
4+
description: Learn about UI interactions like add, edit and modify in Redaction annotations of the Syncfusion React PDF Viewer component.
55
platform: document-processing
66
control: PDF Viewer
77
documentation: ug

Document-Processing/PDF/PDF-Viewer/react/annotation/annotation-event.md

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ The PDF Viewer raises events for annotation and signature interactions (add, rem
3636

3737
### annotationAdd
3838

39-
The [annotationAdd](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationaddevent) event is triggered when an annotation is added to a PDF document's page.
39+
The [annotationAdd](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationaddevent) event is triggered when an annotation is added to a PDF document's page.
4040

4141
#### Event Arguments
4242

43-
For event data, see [AnnotationAddEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationAddEventArgs/). It provides properties such as `annotationId`, `pageNumber`, `annotationType`, and `bounds`.
43+
For event data, see [AnnotationAddEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationAddEventArgs). It provides properties such as `annotationId`, `pageNumber`, `annotationType`, and `bounds`.
4444

4545
The following example illustrates how to handle the `annotationAdd` event.
4646

@@ -112,11 +112,11 @@ export default App;
112112

113113
### annotationDoubleClick
114114

115-
The [annotationDoubleClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationdoubleclickevent) event is triggered when an annotation is double-clicked.
115+
The [annotationDoubleClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationdoubleclickevent) event is triggered when an annotation is double-clicked.
116116

117117
#### Event Arguments
118118

119-
For event data, see [AnnotationDoubleClickEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationDoubleClickEventArgs/).
119+
For event data, see [AnnotationDoubleClickEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationDoubleClickEventArgs).
120120

121121
The following example illustrates how to handle the `annotationDoubleClick` event.
122122

@@ -187,11 +187,11 @@ export default App;
187187

188188
### annotationMouseLeave
189189

190-
The [annotationMouseLeave](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationmouseleaveevent) event is triggered when the user's mouse pointer moves away from an annotation object.
190+
The [annotationMouseLeave](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationmouseleaveevent) event is triggered when the user's mouse pointer moves away from an annotation object.
191191

192192
#### Event Arguments
193193

194-
For event data, see [AnnotationMouseLeaveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMouseLeaveEventArgs/).
194+
For event data, see [AnnotationMouseLeaveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMouseLeaveEventArgs).
195195

196196
The following example illustrates how to handle the `annotationMouseLeave` event.
197197

@@ -262,11 +262,11 @@ export default App;
262262

263263
### annotationMouseover
264264

265-
The [annotationMouseover](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationmouseoverevent) event is triggered when the mouse is moved over an annotation object.
265+
The [annotationMouseover](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationmouseoverevent) event is triggered when the mouse is moved over an annotation object.
266266

267267
#### Event Arguments
268268

269-
For event data, see [AnnotationMouseOverEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMouseOverEventArgs/).
269+
For event data, see [AnnotationMouseOverEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMouseOverEventArgs).
270270

271271
The following example illustrates how to handle the `annotationMouseover` event.
272272

@@ -337,11 +337,11 @@ export default App;
337337

338338
### annotationMove
339339

340-
The [annotationMove](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationmoveevent) event is triggered when an annotation is moved over the page of the PDF document.
340+
The [annotationMove](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationmoveevent) event is triggered when an annotation is moved over the page of the PDF document.
341341

342342
#### Event Arguments
343343

344-
For event data, see [AnnotationMoveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMoveEventArgs/).
344+
For event data, see [AnnotationMoveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMoveEventArgs).
345345

346346
The following example illustrates how to handle the `annotationMove` event.
347347

@@ -412,11 +412,11 @@ export default App;
412412

413413
### annotationMoving
414414

415-
The [annotationMoving](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationmovingevent) event is triggered while an annotation is being moved.
415+
The [annotationMoving](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationmovingevent) event is triggered while an annotation is being moved.
416416

417417
#### Event Arguments
418418

419-
For event data, see [AnnotationMovingEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMovingEventArgs/).
419+
For event data, see [AnnotationMovingEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMovingEventArgs).
420420

421421
The following example illustrates how to handle the `annotationMoving` event.
422422

@@ -487,11 +487,11 @@ export default App;
487487

488488
### annotationPropertiesChange
489489

490-
The [annotationPropertiesChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationpropertieschangeevent) event is triggered when an annotation's property is modified on a PDF document page.
490+
The [annotationPropertiesChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationpropertieschangeevent) event is triggered when an annotation's property is modified on a PDF document page.
491491

492492
#### Event Arguments
493493

494-
For event data, see [AnnotationPropertiesChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationPropertiesChangeEventArgs/). It provides properties such as `annotationId`, `pageNumber`, and `action`.
494+
For event data, see [AnnotationPropertiesChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationPropertiesChangeEventArgs). It provides properties such as `annotationId`, `pageNumber`, and `action`.
495495

496496
The following example illustrates how to handle the `annotationPropertiesChange` event.
497497

@@ -563,11 +563,11 @@ export default App;
563563

564564
### annotationRemove
565565

566-
The [annotationRemove](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationremoveevent) event is triggered when an annotation is removed from a PDF document's page.
566+
The [annotationRemove](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationremoveevent) event is triggered when an annotation is removed from a PDF document's page.
567567

568568
#### Event Arguments
569569

570-
For event data, see [AnnotationRemoveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationRemoveEventArgs/). It provides properties such as `annotationId` and `pageNumber`.
570+
For event data, see [AnnotationRemoveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationRemoveEventArgs). It provides properties such as `annotationId` and `pageNumber`.
571571

572572
The following example illustrates how to handle the `annotationRemove` event.
573573

@@ -638,11 +638,11 @@ export default App;
638638

639639
### annotationResize
640640

641-
The [annotationResize](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationresizeevent) event is triggered when an annotation is resized on a PDF document page.
641+
The [annotationResize](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationresizeevent) event is triggered when an annotation is resized on a PDF document page.
642642

643643
#### Event Arguments
644644

645-
For event data, see [AnnotationResizeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationResizeEventArgs/).
645+
For event data, see [AnnotationResizeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationResizeEventArgs).
646646

647647
The following example illustrates how to handle the `annotationResize` event.
648648

@@ -713,11 +713,11 @@ export default App;
713713

714714
### annotationSelect
715715

716-
The [annotationSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationselectevent) event is triggered when an annotation is selected on a PDF document's page.
716+
The [annotationSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationselectevent) event is triggered when an annotation is selected on a PDF document's page.
717717

718718
#### Event Arguments
719719

720-
For event data, see [AnnotationSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationSelectEventArgs/).
720+
For event data, see [AnnotationSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationSelectEventArgs).
721721

722722
The following example illustrates how to handle the `annotationSelect` event.
723723

@@ -788,11 +788,11 @@ export default App;
788788

789789
### annotationUnselect
790790

791-
The [annotationUnselect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationunselectevent) event is triggered when an annotation is unselected from the PDF document's page.
791+
The [annotationUnselect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#annotationunselectevent) event is triggered when an annotation is unselected from the PDF document's page.
792792

793793
#### Event Arguments
794794

795-
For event data, see [AnnotationUnSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationUnSelectEventArgs/).
795+
For event data, see [AnnotationUnSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationUnSelectEventArgs).
796796

797797
The following example illustrates how to handle the `annotationUnselect` event.
798798

@@ -863,11 +863,11 @@ export default App;
863863

864864
### beforeAddFreeText
865865

866-
The [beforeAddFreeText](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#beforeaddfreetextevent) event is triggered before adding a text in the freeText annotation.
866+
The [beforeAddFreeText](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#beforeaddfreetextevent) event is triggered before adding a text in the freeText annotation.
867867

868868
#### Event Arguments
869869

870-
For event data, see [BeforeAddFreeTextEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/beforeAddFreeTextEventArgs/).
870+
For event data, see [BeforeAddFreeTextEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/beforeAddFreeTextEventArgs).
871871

872872
The following example illustrates how to handle the `beforeAddFreeText` event.
873873

@@ -942,11 +942,11 @@ export default App;
942942

943943
### addSignature
944944

945-
The [addSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#addsignatureevent) event is triggered when a signature is added to a page of a PDF document.
945+
The [addSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#addsignatureevent) event is triggered when a signature is added to a page of a PDF document.
946946

947947
#### Event Arguments
948948

949-
For event data, see [AddSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/addSignatureEventArgs/). It provides properties such as `pageNumber`.
949+
For event data, see [AddSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/addSignatureEventArgs). It provides properties such as `pageNumber`.
950950

951951
The following example illustrates how to handle the `addSignature` event.
952952

@@ -1017,11 +1017,11 @@ export default App;
10171017

10181018
### removeSignature
10191019

1020-
The [removeSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#removesignatureevent) event is triggered when the signature is removed from the page of a PDF document.
1020+
The [removeSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#removesignatureevent) event is triggered when the signature is removed from the page of a PDF document.
10211021

10221022
#### Event Arguments
10231023

1024-
For event data, see [RemoveSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/removeSignatureEventArgs/). It provides properties such as `pageNumber`.
1024+
For event data, see [RemoveSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/removeSignatureEventArgs). It provides properties such as `pageNumber`.
10251025

10261026
The following example illustrates how to handle the `removeSignature` event.
10271027

@@ -1092,11 +1092,11 @@ export default App;
10921092

10931093
### resizeSignature
10941094

1095-
The [resizeSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#resizesignatureevent) event is triggered when the signature is resized and placed on a page of a PDF document.
1095+
The [resizeSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#resizesignatureevent) event is triggered when the signature is resized and placed on a page of a PDF document.
10961096

10971097
#### Event Arguments
10981098

1099-
For event data, see [ResizeSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/resizeSignatureEventArgs/).
1099+
For event data, see [ResizeSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/resizeSignatureEventArgs).
11001100

11011101
The following example illustrates how to handle the `resizeSignature` event.
11021102

@@ -1167,11 +1167,11 @@ export default App;
11671167

11681168
### signaturePropertiesChange
11691169

1170-
The [signaturePropertiesChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signaturepropertieschangeevent) event is triggered when the property of the signature is changed in the page of the PDF document.
1170+
The [signaturePropertiesChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#signaturepropertieschangeevent) event is triggered when the property of the signature is changed in the page of the PDF document.
11711171

11721172
#### Event Arguments
11731173

1174-
For event data, see [SignaturePropertiesChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signaturePropertiesChangeEventArgs/).
1174+
For event data, see [SignaturePropertiesChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signaturePropertiesChangeEventArgs).
11751175

11761176
The following example illustrates how to handle the `signaturePropertiesChange` event.
11771177

@@ -1242,11 +1242,11 @@ export default App;
12421242

12431243
### signatureSelect
12441244

1245-
The [signatureSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signatureselectevent) event is triggered when signature is selected over the page of the PDF document.
1245+
The [signatureSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#signatureselectevent) event is triggered when signature is selected over the page of the PDF document.
12461246

12471247
#### Event Arguments
12481248

1249-
For event data, see [SignatureSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signatureSelectEventArgs/).
1249+
For event data, see [SignatureSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signatureSelectEventArgs).
12501250

12511251
The following example illustrates how to handle the `signatureSelect` event.
12521252

@@ -1317,11 +1317,11 @@ export default App;
13171317

13181318
### signatureUnselect
13191319

1320-
The [signatureUnselect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signatureunselectevent) event is triggered when signature is unselected over the page of the PDF document.
1320+
The [signatureUnselect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer#signatureunselectevent) event is triggered when signature is unselected over the page of the PDF document.
13211321

13221322
#### Event Arguments
13231323

1324-
For event data, see [SignatureUnSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signatureUnSelectEventArgs/).
1324+
For event data, see [SignatureUnSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signatureUnSelectEventArgs).
13251325

13261326
The following example illustrates how to handle the `signatureUnselect` event.
13271327

Document-Processing/PDF/PDF-Viewer/react/annotation/free-text-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ root.render(<App />);
103103

104104
## Add a free-text annotation programmatically
105105

106-
You can add a free-text annotation programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
106+
You can add a free-text annotation programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation#annotation) method.
107107

108108
Example: add a free-text annotation using `addAnnotation()`.
109109

Document-Processing/PDF/PDF-Viewer/react/annotation/ink-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ root.render(<App />);
105105

106106
## Add an ink annotation programmatically to the PDF document
107107

108-
The PDF Viewer library allows adding an ink annotation programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
108+
The PDF Viewer library allows adding an ink annotation programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation#annotation) method.
109109

110110
The following examples demonstrate how to add an ink annotation programmatically using `addAnnotation()`.
111111

Document-Processing/PDF/PDF-Viewer/react/annotation/measurement-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ root.render(<App />);
111111

112112
## Add a measurement annotation to the PDF document programmatically
113113

114-
The PDF Viewer library allows adding measurement annotations programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
114+
The PDF Viewer library allows adding measurement annotations programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation#annotation) method.
115115

116116
The following examples demonstrate how to add measurement annotations programmatically using `addAnnotation()`.
117117

Document-Processing/PDF/PDF-Viewer/react/annotation/signature-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ root.render(<App />);
178178

179179
## Add a handwritten signature programmatically to the PDF document
180180

181-
The PDF Viewer API supports programmatic creation of handwritten signatures via the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotation) method.
181+
The PDF Viewer API supports programmatic creation of handwritten signatures via the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation#addannotation) method.
182182

183183
The examples below demonstrate how to add handwritten signatures programmatically using `addAnnotation()`.
184184

Document-Processing/PDF/PDF-Viewer/react/annotation/stamp-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Only JPG and JPEG image formats are supported for custom stamp annotations.
142142

143143
## Add a stamp annotation programmatically
144144

145-
Use the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method to add stamp annotations programmatically.
145+
Use the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation#annotation) method to add stamp annotations programmatically.
146146

147147
The examples below demonstrate using `addAnnotation()` to create stamp annotations.
148148

Document-Processing/PDF/PDF-Viewer/react/annotation/sticky-notes-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Annotation comments are added using the comment panel.
2727

2828
## Add a sticky note annotation to the PDF document programmatically
2929

30-
Use the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method to add a sticky note annotation programmatically.
30+
Use the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation#annotation) method to add a sticky note annotation programmatically.
3131

3232
The following example demonstrates using `addAnnotation()` to create a sticky note annotation.
3333

0 commit comments

Comments
 (0)