See Also

Button Members

Description

Represents the button field of an interactive form. A button is a purely interactive control that responds immediately to user input without retaining a permanent value.

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

Remarks

For more details on button fields take a look at the Interactive Forms topic.

NOTE: This page element cannot be used within a table cell, or tranformation group.

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 button to the page 
    Dim MyButton 
    Set MyButton = MyPage.AddButton( "Button Name", 10, 10, 50, 20 ) 
    MyButton.ToolTip = "Button added to page" 
    MyButton.Label = "Click"     
    'Draw the PDF 
    MyDocument.DrawToWeb  
    Set MyPage = Nothing  
    Set MyDocument = Nothing  
%>

See Also

Button Members

 

 


© Copyright 2007, ceTe Software