See Also

LayoutGrid Members

Description

Represents a layout grid.

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

Remarks

This class can be used to place a grid on the entire page. This grid is very helpful with the design and layout of the elements on the page of the document.

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" )  
    ' Create a Page and add it to the document 
    Dim MyPage  
    Set MyPage = MyDocument.AddPage() 
    Dim MyLayout 
    Set MyLayout = MyPage.AddLayoutGrid( DPDF_GridType_Print ) 
    ' Draw the PDF 
    MyDocument.DrawToWeb 
    Set MyPage = Nothing 
    Set MyDocument = Nothing 
%>     
 

See Also

LayoutGrid Members

 

 


© Copyright 2007, ceTe Software