Initializes new instance of class.

Namespace: Spire.Pdf.Annotations
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
[ObsoleteAttribute("please use other to overload methods")]
public PdfTextMarkupAnnotation(
	string markupTitle,
	string text,
	string markupText,
	PointF point,
	PdfFontBase pdfFont
)
<ObsoleteAttribute("please use other to overload methods")> 
Public Sub New ( 
	markupTitle As String,
	text As String,
	markupText As String,
	point As PointF,
	pdfFont As PdfFontBase
)
public:
[ObsoleteAttribute(L"please use other to overload methods")]
PdfTextMarkupAnnotation(
	String^ markupTitle, 
	String^ text, 
	String^ markupText, 
	PointF point, 
	PdfFontBase^ pdfFont
)
[<ObsoleteAttribute("please use other to overload methods")>]
new : 
        markupTitle : string * 
        text : string * 
        markupText : string * 
        point : PointF * 
        pdfFont : PdfFontBase -> PdfTextMarkupAnnotation

Parameters

markupTitle
String
The markup annotation title.
text
String
The string specifies the text of the annotation.
markupText
String
The string specifies the markup text of the annotation.
point
PointF
The location of the markup text annotation.
pdfFont
PdfFontBase
The specifies the text appearance of the markup text annotation.

See Also