Description
Represents the text field of a interactive forms. Text fields are boxes or spaces in which the user can enter text from the keyboard.
For a list of all members defined in this module, see TextField members.
Interfaces
| Implemented Interface | Description |
| Object | |
Example
[ASP - VBScript]
<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> <% ' Create a PDF Document Dim MyDocument Set MyDocument = Server.CreateObject( "DynamicPDF.Document" ) ' Create a Page and add it to the document Dim MyPage Set MyPage = MyDocument.AddPage() 'Add TextField Dim MyTextField Set MyTextField = MyPage.AddTextField( "Text Field Name", 10, 50, 100, 30 ) MyTextField.FontSize = 15 ' Draw the PDF MyDocument.DrawToWeb Set MyPage = Nothing Set MyDocument = Nothing %> |
See Also
TextField Members
© Copyright 2007, ceTe Software