Class PdfFormTextBox
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
Represents a text box in a PDF form
[ClassInterface(ClassInterfaceType.AutoDual)]
public class PdfFormTextBox : PdfFormField
- Inheritance
-
PdfFormTextBox
- Inherited Members
Properties
Font
Gets or sets the PDF form text box font
public PdfFont Font { get; set; }
Property Value
IsMultiLine
A flag indicating if the text box is multiline. This property is false by default
public bool IsMultiLine { get; set; }
Property Value
IsPassword
A flag indicating if this text box is used to enter a password. This property is false by default
public bool IsPassword { get; set; }
Property Value
MaxLength
Gets or sets the maximum length of the field text in characters
public int MaxLength { get; set; }
Property Value
Text
Gets or sets the text box initial text
public string Text { get; set; }