See Also

AnchorGroup Members

Description

Represents a group of elements that will be anchored.

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

Object Model


























































Interfaces

Implemented InterfaceDescription
Object 

Example

[ASP - VBScript] 

<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> 
<% 
    ' Create a PDF Document  
    Dim MyDocument   
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" )  
    'Add page to the document 
    Dim MyPage   
    Set MyPage = MyDocument.AddPage() 
    'Add Anchor group 
    Dim MyAnchorGroup   
    Set MyAnchorGroup  = MyPage.AddAnchorGroup( 400, 400, DPDF_Align_Left, DPDF_VAlign_Top )  
    MyAnchorGroup.AddRectangle 0, 0, 200, 200, , , 3  
    MyAnchorGroup.AddLine 0, 100, 100, 0, 3 
    MyAnchorGroup.AddCircle 100, 100, 50 
    MyAnchorGroup.AnchorTo = DPDF_AnchorTo_Margins 
    'Draw the PDF 
    MyDocument.DrawToWeb  
    Set MyPage = Nothing  
    Set MyDocument = Nothing  
%>

See Also

AnchorGroup Members

 

 


© Copyright 2007, ceTe Software