See Also

CheckBox Members

Description

Represents the check box field of a interactive forms. A check box toggles between two states, on and off.

For a list of all members defined in this module, see CheckBox 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 check box to the anchor group 
    Dim MyCheckBox1 
    Set MyCheckBox1 = MyPage.AddCheckBox( "Check Box Name", 10, 10, 20, 20 ) 
    MyCheckBox1.ExportValue = "Yes" 
    MyCheckBox1.DefaultChecked = true 
    Dim MyCheckBox2 
    Set MyCheckBox2 = MyPage.AddCheckBox( "Check Box Name", 40, 10, 20, 20 ) 
    MyCheckBox2.ExportValue = "No" 
 
    'Draw the PDF 
    MyDocument.DrawToWeb  
    Set MyPage = Nothing  
    Set MyDocument = Nothing  
%>

See Also

CheckBox Members

 

 


© Copyright 2007, ceTe Software