Description

Represents a group of page elements to transform.

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

Object Model











































Remarks

This class can be used to transform entire groups of page elements. Any page element that is placed in this group will be displayed with the transformation values and attributes of this group.

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() 
    ' Create a transformation group and add a rectangle and a label to it 
    Dim MyGroup  
    Set MyGroup = MyPage.AddTransformationGroup( 100, 100, 200, 200 ) 
    MyGroup.Angle = 30 
    MyGroup.AddRectangle 0, 0, 75, 75, "0000FF", , , , DPDF_ApplyColor_Fill 
    MyGroup.AddLabel "This text is inside a TransformationGroup.", 0, 100, 300, 12 
    ' Vertically scale the group 
    MyGroup.ScaleY = 2 
    ' Draw the PDF 
    MyDocument.DrawToWeb 
    Set MyPage = Nothing 
    Set MyDocument = Nothing 
%> 

See Also

TransformationGroup Members