| StickyNoteCreate Method |
Create a sticky note annotation.
The returned sticky note annotation is not yet part of any page.
It can be added to a page's list of annotations.
Namespace: PdfTools.Toolbox.Pdf.AnnotationsAssembly: PdfTools.Toolbox (in PdfTools.Toolbox.dll) Version: 1.1.0+5820e9ca9ca173983539ffc40abc227fb62e6928
Syntax public static StickyNote Create(
Document targetDocument,
Point topLeft,
string content,
Paint paint
)
Parameters
- targetDocument Document
-
The output document with which the returned object is associated
- topLeft Point
-
The location of the annotation's upper left corner on the page
- content String
-
The text content
- paint Paint
-
The paint for the sticky note icon.
Return Value
StickyNote
The newly created sticky note annotation
Exceptions Exception | Condition |
---|
ArgumentException | if the targetDocument has already been closed |
ArgumentException | if the targetDocument is read-only |
ArgumentException | if the color space of the paint argument is not a device color space |
ArgumentException | if the paint has a non-Transparency with BlendMode other than Normal |
ArgumentException | if the paint argument is not associated with the targetDocument |
ArgumentNullException | if targetDocument is . |
ArgumentNullException | if paint is . |
See Also