Underline text in PDF files using WPF PDF Viewer
15 Nov 20227 minutes to read
The WPF PDF Viewer allows the user to underline text in PDF files and provides options to edit or remove the existing underlines. The underline inclusion mode can be enabled via the toolbar UI or the API. Once the underline inclusion mode is activated, you can underline the required text by selecting it. To select the text, hold down the left mouse button and drag the mouse pointer over the text.
To enable the mode from UI, click the below icon in the default toolbar of PdfViewerControl.
NOTE
From version 19.4.0.48, we have updated our default text extraction engine to PDFium for extracting text information from PDF documents. Based on the text information, we create text markup annotations in the PDF documents. Please refer to the link for more details.
If you are using PdfDocumentView control, or your own toolbar, or if you want enable the mode programmatically, change the AnnotationMode property of PDF Viewer to Underline, as shown in the below code example.
private void EnableUnderlineInclusionMode()
{
pdfViewer.AnnotationMode = PdfDocumentView.PdfViewerAnnotationMode.Underline;
}
Private Sub EnableUnderlineInclusionMode()
pdfViewer.AnnotationMode = PdfDocumentView.PdfViewerAnnotationMode.Underline
End Sub
The following image shows the underlined text in the PDF file.
NOTE
The left click selection for the underline annotation is supported from 19.3.0.5X version.
Change the default color of the underline annotation
The underline color is dark green by default. However, you can change the default color of the underline programmatically as shown in the following code example.
private void ChangeDefaultUnderlineColor()
{
pdfViewer.UnderlineAnnotationSettings.UnderlineColor = System.Windows.Media.Colors.Blue;
}
Private Sub ChangeDefaultUnderlineColor()
pdfviewer.UnderlineAnnotationSettings.UnderlineColor = System.Windows.Media.Colors.Blue
End Sub
Change the default opacity of the underline annotation
The underline opacity value is 1 by default. However, you can change the default opacity of the underline programmatically as shown in the following code example.
private void ChangeDefaultUnderlineOpacity()
{
pdfViewer.UnderlineAnnotationSettings.Opacity = 0.5f;
}
Private Sub ChangeDefaultUnderlineOpacity()
pdfviewer.UnderlineAnnotationSettings.Opacity = 0.5F
End Sub
Change the default author and subject of the underline annotation
You can change the default author and subject of the underline annotation programmatically as shown in the following code example.
private void ChangeDefaultUnderlineDetails()
{
pdfViewer.UnderlineAnnotationSettings.Author = "your name";
pdfViewer.UnderlineAnnotationSettings.Subject = "your subject";
}
Private Sub ChangeDefaultUnderlineDetails()
pdfViewer.UnderlineAnnotationSettings.Author = "your name"
pdfViewer.UnderlineAnnotationSettings.Subject = "your subject"
End Sub
Working with included/existing underline annotations
Underline annotation supports adding notes along with it, also it allows editing its color and opacity. To use these options, select the included/existing underline annotation and click right using mouse, over the selected annotation, a pop up context menu will appear with the following options,
- Open Pop-up note
- Properties
- Delete
Open Pop-up notes
We can add notes to the underline annotation choosing Open Pop-up note option from the context menu. The following image illustrates the notes added to the selected underline annotation. The added notes will be saved along with the PDF document and if there is any existing notes, it will be displayed in here.
Properties
Selecting properties from the context menu will display the Underline Properties window, which would consist of two tabs
- Appearance
- General
Appearance tab
The color and opacity of the underline annotation can be edited using Appearance tab of Underline Properties window.
Editing color of the annotation
The color of the selected underline annotation will be displayed in the color row in the appearance tab. Selecting the Color would displays the color palette control, choosing a color from the color palette and clicking OK will apply the color to the underline annotation.
The following image illustrates how to change the color of the underline annotation included.
The following image illustrated the change in color of the included underline annotation.
Editing opacity of the annotation
The slider displayed in the Appearance tab will allow us to modify the opacity of the selected underline annotation. You can also modify the opacity of the selected underline annotation by giving numeric value in the opacity text box.
The following image illustrates how to change the opacity of the underline annotation.
The following image illustrates the change in opacity of the included underline annotation.
General tab
We can add/edit the default Author and Subject to the included underline annotation using General tab of the Underline Properties window.
The following image illustrates the change in Author and Subject of the included Underline annotation.
Deleting an annotation
Selecting delete option from the context menu which will be displayed by right click on the selected annotation would delete the respective annotation from the PDF document.
The following image illustrates how to delete the included annotation from the PDF document.
Notification when the underline has changed
The TextMarkupAnnotationChanged event occurs when an underline annotation is added, removed or modified. The TextMarkupAnnotationChangedEventArgs provides the information such as the type of the annotation, the action performed, and the annotation properties.
The following code shows how to wire and handle the event.
//wire the text markup changed event.
pdfViewer.TextMarkupAnnotationChanged += PdfViewer_TextMarkupAnnotationChanged;
private void PdfViewer_TextMarkupAnnotationChanged(object sender, TextMarkupAnnotationChangedEventArgs e)
{
//Get the action performed on the annotation
//AnnotationChangedAction to identify action performed for annotation
AnnotationChangedAction action = e.Action;
//Page index in which this shape annotation was modified
int pageNumber = e.PageNumber;
//Get annotation's new and old bounds (position and size).
RectangleF newBounds = e.NewBounds;
RectangleF oldBounds = e.OldBounds;
//To identify which type text markup annotation
TextMarkupAnnotationType type = e.Type;
TextMarkupAnnotationSettings settings = e.Settings;
//Annotation's properties which can be modify
string author = settings.Author;
string subject = settings.Subject;
string Text = settings.Text;
float opacity = settings.Opacity;
}
NOTE
You can refer to our WPF PDF Viewer feature tour page for its groundbreaking feature representations. You can also explore our WPF PDF Viewer example to know how to render and configure the pdfviewer.