See Also

ComboBox Members

Description

Represents the combo box field of a interactive forms. A combo box consisting of a drop list.

For a list of all members defined in this module, see ComboBox 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 combobox to the Page 
    Dim MyComboBox 
    Set MyComboBox = MyPage.AddComboBox( "Combo Box Name", 20, 20, 100, 20 ) 
    MyComboBox.BorderColor = "Black" 
    MyComboBox.AddItem( "Item 1" ) 
    MyComboBox.AddItem( "Item 2" ) 
    MyComboBox.AddItem( "Item 3" ) 
    MyComboBox.AddItem( "Item 4" ) 
    MyComboBox.DefaultChoice = "Item 1" 
    'Draw the PDF 
    MyDocument.DrawToWeb  
    Set MyPage = Nothing  
    Set MyDocument = Nothing  
%>

See Also

ComboBox Members

 

 


© Copyright 2007, ceTe Software