Description

Represents a path with sub paths.

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

Remarks

This class can be used to specify a collection of sub paths which will be used to complete your path. Sub paths that can be added are CurveFromSubPath, CurveSubPath, CurveToSubPath and LineSubPath.

Example

[ASP - VBScript] 

<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> 
<% 
    Dim MyDocument 
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" ) 
    Dim MyTemplate 
    Set MyPage = MyDocument.AddPage() 
    ' Add a Area Group to the Page 
    Dim MyPath  
    Set MyPath = MyPage.AddPath( 50, 150, "0000FF", "FFFF00", DPDF_ApplyColor_Both, 3, DPDF_LineStyle_Solid, True ) 
    ' Adding Sub Paths to the Path 
    Mypath.AddCurve 50, 400, 300, 150, -200, 400 
    Mypath.AddLine 300, 400 
    Mypath.AddCurveTo 300, 150, 50, 300 
    Mypath.AddCurveFrom 150, 100, 200, -100  
    MyDocument.DrawToWeb 
    Set MyPage = Nothing 
    Set MyDocument = Nothing 
%> 

See Also

Path Members