' For complete examples and data files, please go to https://github.com/groupdocsannotation/GroupDocs_Annotation_NET
Try
' Get input file stream
Dim inputFile As Stream = New FileStream(CommonUtilities.MapSourceFilePath(filePath), FileMode.Open, FileAccess.ReadWrite)
' Initialize list of AnnotationInfo
Dim annotations As New List(Of AnnotationInfo)()
' Point annotation
Dim pointAnnotation As New AnnotationInfo() With { _
.AnnotationPosition = New Point(852.0, 81.0), _
.Box = New Rectangle(212.0F, 81.0F, 142.0F, 0.0F), _
.PageNumber = 0, _
.Type = AnnotationType.Point, _
.CreatorName = "Anonym A." _
}
' Add annotation to list
annotations.Add(pointAnnotation)
' Export annotation and save output file
CommonUtilities.SaveOutputDocument(inputFile, annotations, DocumentType.Pdf)
Catch exp As Exception
Console.WriteLine(exp.Message)
End Try