See Also

RadioButton Members

Description

Represents the radio button field of a interactive forms. Radio buttons are a set of related toggles, at most one of which may be on at any given time; selecting any one of the buttons automatically deselects all the others.

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

Interfaces

Implemented InterfaceDescription
Object 

Example

[ASP - VBScript] 

<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> 
<% 
    'Create a Document 
    Dim MyDocument  
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" )  
    'Add Page to the document 
    Dim MyPage  
    Set MyPage = MyDocument.AddPage()  
       'Add radio buttons 
    Dim MyRadio   
    Set MyRadio = MyPage.AddRadioButton( "Radio Button Name", 10, 10, 20, 20 ) 
    MyRadio.ExportValue = "Yes" 
    Dim MyRadio1 
    Set MyRadio1 = MyPage.AddRadioButton( "Radio Button Name", 40, 10, 20, 20 ) 
    MyRadio1.ExportValue = "No" 
    'Output the PDF 
    MyDocument.DrawToWeb()  
    Set MyPage = Nothing  
    Set MyDocument = Nothing  
%>

See Also

RadioButton Members

 

 


© Copyright 2007, ceTe Software