See Also

Label Members

Description

Represents a label.

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

Remarks

This class can be used to place labels of text on a page.

Interfaces

Implemented InterfaceDescription
Object 

Example

[ASP - VBScript] 

<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> 
<% 
    Dim MyDocument  
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" ) 
    Dim MyPage  
    Set MyPage = MyDocument.AddPage() 
    Dim MyLabel 
    Set MyLabel = MyPage.AddLabel( "Hello World!", 0, 0, 100, 12 )  
    MyLabel.Font = DPDF_Font_Helvetica  
    MyLabel.FontSize = 12 
    MyDocument.DrawToWeb True 
    Set MyPage = Nothing 
    Set MyDocument = Nothing 
%> 

See Also

Label Members

 

 


© Copyright 2007, ceTe Software