WPF

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Enum PdfAnnotationIntent - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Enum PdfAnnotationIntent

    Specifies the annotation text intent.

    Namespace: Syncfusion.Pdf.Interactive
    Assembly: Syncfusion.Pdf.Base.dll
    Syntax
    public enum PdfAnnotationIntent
    Examples
    //Create a new PDF document.
    PdfDocument document = new PdfDocument();
    //Create a new page.
    PdfPage page = document.Pages.Add();
    //Create a new rectangle
    RectangleF textAnnotationBounds = new RectangleF(10, 40, 100, 30);
    //Create a new line annotation.
    PdfFreeTextAnnotation actionAnnotation = new PdfFreeTextAnnotation(textAnnotationBounds);
    //Set the text and font
    actionAnnotation.MarkupText = "Text Annotation";
    actionAnnotation.Font = new PdfStandardFont(PdfFontFamily.Courier, 10);
    //Set the line caption type.
    actionAnnotation.AnnotationIntent = PdfAnnotationIntent.FreeTextCallout;
    //Add this annotation to a new page.
    page.Annotations.Add(actionAnnotation);
    //Save the document to disk.
    document.Save("Output.pdf");
    //close the document
    document.Close(true);
    'Create a new PDF document.
    Dim document As New PdfDocument()
    'Create a new page.
    Dim page As PdfPage = document.Pages.Add()
    'Create a new rectangle
    Dim textAnnotationBounds As New RectangleF(10, 40, 100, 30)
    'Create a new line annotation.
    Dim actionAnnotation As New PdfFreeTextAnnotation(textAnnotationBounds)
    'Set the text and font
    actionAnnotation.MarkupText = "Text Annotation"
    actionAnnotation.Font = New PdfStandardFont(PdfFontFamily.Courier, 10)
    'Set the line caption type.
    actionAnnotation.AnnotationIntent = PdfAnnotationIntent.FreeTextCallout
    'Add this annotation to a new page.
    page.Annotations.Add(actionAnnotation)
    'Save the document to disk.
    document.Save("Output.pdf")
    'close the document
    document.Close(True)

    Fields

    Name Description
    FreeTextCallout

    Represents annotation intent.

    FreeTextTypeWriter

    Represents annotation intent.

    See Also
    PdfDocument
    PdfPage
    PdfFreeTextAnnotation
    Back to top Generated by DocFX
    Copyright © 2001 - 2021 Syncfusion Inc. All Rights Reserved