See Also

TextArea Members

Description

Represents an area of text.

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

Remarks

This class can be used to place text on a page. Using the methods OverflowText or GetOverflowTextArea and HasOverflowText, users can control the pagination of TextAreas that come from a source of unknown length.

Interfaces

Implemented InterfaceDescription
Object 

Example

[ASP - VBScript] 

<% 
    ' Create a PDF Document 
    Dim MyDocument  
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" )  
    Dim MyPage 
    Set MyPage = MyDocument.AddPage()         
    Dim MyTextArea 
    ' Create a text area  
    Set MyTextArea = MyPage.AddTextArea( "This is the underlined text of a TextArea", _ 
    100, 100, 400, 30, , DPDF_Font_HelveticaBoldOblique, 18, "483D8B" ) 
    ' Change the underline property to true 
    MyTextArea.Underline = True 
    ' Draw the PDF 
    MyDocument.DrawToWeb 
    Set MyPage = Nothing 
    Set MyDocument = Nothing 
%>

See Also

TextArea Members

 

 


© Copyright 2007, ceTe Software