Description

Represents a note annotation.

For a list of all members defined in this module, see Note members.

Remarks

This class can be used to place a note annotation on the PDF.

Example

[ASP - VBScript] 

<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> 
<% 
    ' Create a PDF Document 
    Dim MyDocument 
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" )  
    ' Create a Page and add it to the document 
    Dim MyPage  
    Set MyPage = MyDocument.AddPage() 
    Dim MyNote 
    Set MyNote = MyPage.AddNote( "This is a Note", 20, 50, 100, 100 ) 
    MyNote.IsOpen = True 
    ' Draw the PDF 
    MyDocument.DrawToWeb 
    Set MyPage = Nothing 
    Set MyDocument = Nothing 
%> 
 

See Also

Note Members