[]
The Annotation editor in GcDocs PDF Viewer allows you to edit and review PDF documents. You can add or remove different types of annotations, comment or reply on comments and set or modify annotation properties like text, color, position, border, style etc. Along with the Annotation editor's toolbar, you can access all the annotations and various other options through the main toolbar. It provides editing tools which allow you to quickly perform edit operations without the need of switching into full editing mode.
The editing tools displayed in the below screenshots provide the annotation options along with 'Undo, Redo and Delete' and Redact options in the quick editing toolbars.
Text Tools
On clicking the Text tools button, the quick editing toolbar appears which displays various related text annotation tools like sticky note, free text, ink annotation etc.

Draw Tools
On clicking the Draw tools button, the quick editing toolbar appears which displays various draw annotation tools like square, circle, line annotation etc.

Attachments and Stamps
On clicking the Attachments and stamps button, the quick editing editor toolbar appears which displays various attachment and stamp tools like stamp annotation, file attachment, signature tool etc. Stamp annotation also supports rotation through Rotate property, or the rotation handle attached to the annotation. For more information, see "Stamp Rotation".

Page Tools
On clicking the Page Tools button, the quick editing editor toolbar appears, which displays various page related options like adding a new blank document, inserting a blank page, deleting the current page, performing undo or redo operations, and reordering or reorganizing the pages. For more information about PDF Organizer, see PDF Organizer.

The Form tools button
in the above toolbar provides various form field buttons. To know more, refer Form Editor.
Note: The editing tools (explained above) are automatically enabled in the main toolbar when SupportApi is configured in the project (which allows editing operations in a PDF document).
You can also configure which tools should be displayed in the second toolbar by using the secondToolbarLayout property as shown below:
const secondToolbarLayout = viewer.secondToolbarLayout;
secondToolbarLayout["text-tools"] = ['edit-text', 'edit-free-text'];The output of above code will look like below:

You can also customize the second toolbar by using the render handler for secondToolbar option:
var React = viewer.getType("React");
// Create custom toolbar controls:
var toolbarControls = [React.createElement("label", { style: { color: "white" } }, "Custom toolbar"),
React.createElement("button", { className: "gc-btn gc-btn--accent", onClick: () => { alert("Execute action."); }, title: "Action title" }, "Action")];
// Register custom second toolbar for key "custom-toolbar-key":
viewer.options.secondToolbar = {
render: function (toolbarKey) {
if (toolbarKey === "custom-toolbar-key")
return toolbarControls;
return null;
}
};
// Show custom second toolbar:
viewer.showSecondToolbar("custom-toolbar-key");The output of above code will look like below:

Alternatively, you can access all the available annotations through the Annotation editor's toolbar which opens on clicking the Annotation editor button in the side panel. The below image shows Annotation editor and its toolbar in GcDocs PDF Viewer with a PDF document containing a Text annotation.

The different toolbar buttons are described as below. To know more about different annotations, refer Annotation Types.
Name | Toolbar Icons | Description |
|---|---|---|
Select | Select an annotation added on PDF | |
Signature Tool | Adds graphical signatures on the PDF | |
Sticky Note | Adds text or sticky notes on the PDF | |
Free Text Annotation | Adds a note that is always visible on the PDF | |
Ink Annotation | Draws free-hand scribble on the PDF | |
Square Annotation | Adds a rectangle shape on PDF | |
Circle Annotation | Adds a circle shape on the PDF | |
Line Annotation | Adds a straight line on the PDF | |
PolyLine Annotation | Adds closed or open shapes of multiple edges on the PDF | |
Polygon Annotation | Adds a polygon on the PDF | |
Stamp Annotation | Adds image on the PDF | |
File Attachment Annotation | Attaches a file to the document, which will be embedded in the PDF | |
Sound Annotation | Adds sound (.au, .aiff, or .wav format) imported from a file or recorded from the computer’s microphone | |
Link Annotation | Adds link on the PDF | |
Highlight Annotation |
| Adds highlight over selected text of PDF |
Underline Annotation |
| Adds underline over selected text of PDF |
Squiggly Annotation |
| Adds squiggly annotation over selected text of PDF |
Strike-out Annotation |
| Strikes-out selected text of PDF |
Delete Annotation Button | Deletes the annotation | |
Redact Annotation | Marks region on PDF document to be redacted | |
Apply Redact Annotation | Applies redact to all regions marked for redact |
Note: All the above mentioned annotations are supported in GcDocs PDF Viewer. The below annotations are explained in detail in following topics:
Apart from the different types of annotations described above, GcDocs PDF Viewer also provides some general editing features while working with PDF documents. They are explained as below:
Toolbar Icons | Description |
|---|---|
Undo changes | |
Redo changes | |
Saves the modified document on client | |
| Saves the modified document as images on client |
Creates a new blank document | |
Inserts a blank page | |
Deletes current page | |
| Reorders and reorganizes the pages in a PDF document. For more information, see PDF Organizer. |
Note: There is a difference in how the Highlight annotation looks in GcPdfViewer and in Adobe Acrobat reader.
You can also insert a blank page in a PDF document and set its size by using the newPage method. Alternatively, you can only set the size of an existing page using setPageSize method as shown below:
viewer.open("AcmeFinancialReport.pdf");
viewer.onAfterOpen.register(()=>
{
//Add new page at second position and set its size
viewer.newPage({height:400, pageIndex:1, width:300});
//Set page size for the first page
viewer.setPageSize(0, { width: 300, height: 500 });
});The Text Markup Context Menu gets displayed whenever user selects a text in the PDF document in GcDocs PdfViewer. The context menu is available only when SupportAPI services are configured and editing features of viewer are enabled. The context menu lets you apply following annotations in 6 different colors, by default.
Highlight Annotation |
| Adds highlight over selected text of PDF |
Underline Annotation |
| Adds underline over selected text of PDF |
Squiggly Annotation |
| Adds squiggly annotation over selected text of PDF |
Strike-out Annotation |
| Strikes-out selected text of PDF |
When applying an annotation to the selected text using this menu, a comment corresponding to the annotation gets added to the Comment Panel, which activates the Comment Panel, focusing on the new comment in the list. This comment can then be used to provide additional information about the marked text. For more information, refer to Comment Panel.
Refer to the following GIF image that depicts the described behavior:

You can also access these markup annotations through Text tool options on the quick editing toolbar of the PDF viewer as well as from Annotation Editor.
GcPdfViewer lets you disable the Text Markup Context Menu by setting the textMarkupContextMenu property to false. You can also change colors available for these annotations. The code below shows how to disable the Text Markup Context Menu and change the color options available with text markup annotations.
// Disable the text markup context menu
var viewer = new GcPdfViewer(selector, {textMarkupContextMenu: false}); Refer to the following example code to change the default color options available to red and black:
// Change the default text markup colors to “Red” and “Black”:
var viewer = new GcPdfViewer(selector, {
textMarkupContextMenu: { colors: [{value: "#ff0000", displayName: "Red"}, {value: "#000000", displayName: "Black"}] } }); Refer to the following example code to change the default color options available for different text markup types in the Mark Text Menu:
//Customize available colors for different text markup types in Mark Text Menu.
var viewer = new GcPdfViewer(selector, {
textMarkupContextMenu: {
colors: {
highlight: [
{value: "#ff0000", displayName: "Red"},
{value: "#000000", displayName: "Black"}
],
underline: [
{value: "#ff0000", displayName: "Red"}
]
}
}
}); Limitation: Appearance of Highlight annotation in GcPdfViewer is slightly different from that in Adobe Acrobat Reader.
When you click the Annotation editor icon in the left vertical panel, the Property panel of the Annotation editor becomes visible. The Property panel displays the list of all the annotations page-wise in your document. It also allows you to set or modify properties of any annotation in the document like its text, color, border location etc.
The Property panel also provides the following three options, which are commonly available for all annotations:
Delete: Deletes the annotation.
Clone: Creates and adds a clone of the annotation to the document.
Convert: Converts the annotation to PDF content, and a revert button starts appearing in the panel to revert it back to annotation. For more information, see Convert to Content.
The image below shows the properties of a square annotation in the Property panel:

The Annotation editor is displayed by default in GcDocs PDF Viewer, by enabling the AnnotationEditorPanel in the viewer using code:
var viewer = new GcPdfViewer("#host", { supportApi: 'SupportApi/GcPdfViewer' });
viewer.addDefaultPanels();
viewer.addAnnotationEditorPanel();
viewer.beforeUnloadConfirmation = true;
viewer.open("Home/GetPdf");To customize the annotation options in GcPdfViewer, add the following lines of code in the class file where you load the PDF in the Viewer:
public static GcPdfViewerSupportApiDemo.Models.PdfViewerOptions PdfViewerOptions
{
get => new GcPdfViewerSupportApiDemo.Models.PdfViewerOptions(
GcPdfViewerSupportApiDemo.Models.PdfViewerOptions.Options.AnnotationEditorPanel |
GcPdfViewerSupportApiDemo.Models.PdfViewerOptions.Options.ActivateAnnotationEditor,
annotationEditorTools: new string[] { "edit-select", "$split", "edit-text", "edit-free-text", "$split", "edit-erase", "$split", "edit-redact", "edit-redact-apply", "$split", "edit-undo", "edit-redo", "save" });
}Follow the below steps to review a PDF document using the annotation editor in GcPdfViewer:
Configure the GcPdfViewer for editing PDF documents.
Run the application and open the PDF you want to review using the Open button.
Open the Annotation Editor using the second last icon on the left vertical toolbar.
Choose any annotation from the different annotations available in the toolbar at the top.
Use that annotation to mark a correction in your document.
Set annotation properties from the Property panel like color, border etc.
Add a Text annotation and type the final review text.
Close the Annotation editor and go back to View mode.
The annotations are successfully added annotations to the document. You can also view the list of all the annotations in the property panel of Annotation Editor.

For more information, refer Annotation Editor in GcDocs PDF Viewer demos.