See Also

ListBox Members

Description

Represents the list box field of a interactive forms.

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

Interfaces

Implemented InterfaceDescription
Object 

Example

[ASP - VBScript] 

<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> 
<% 
    'Create Document 
    Dim MyDocument   
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" )   
    'Add Page to the document 
    Dim MyPage   
    Set MyPage = MyDocument.AddPage()  
    'Add list box 
    Dim MyListBox   
    Set MyListBox = MyPage.AddListBox( "List Box Name", 10, 10, 100, 70 ) 
    MyListBox.AddItem( "Item 1" ) 
    MyListBox.AddItem( "Item 2" ) 
    MyListBox.AddItem( "Item 3" ) 
    MyListBox.AddItem( "Item 4" ) 
    MyListBox.AddItem( "Item 5" ) 
    MyListBox.AddItem( "Item 6" ) 
    'Draw the PDF 
    MyDocument.DrawToWeb  
    Set MyPage = Nothing  
    Set MyDocument = Nothing 
%>

See Also

ListBox Members

 

 


© Copyright 2007, ceTe Software