TextBoxField

TextBoxField

Overview

TextBoxField is a type in Aspose.PDF FOSS for Go.

TextBoxField is a single- or multi-line text input.

This type provides 10 methods for working with TextBoxField objects in Go programs. Available methods include: IsMultiline, IsPassword, MaxLen, SetMaxLen, SetMultiline, SetPassword, SetReadOnly, SetRequired, SetValue, Value. All public members are accessible to any Go application after installing the Aspose.PDF FOSS for Go package.

Methods

SignatureDescription
Value()stringReturns the value.
SetValue(s: string)errorSets the value value.
MaxLen()intReturns the max len.
IsMultiline()boolReturns true if multiline is set.
IsPassword()boolReturns true if password is set.
SetReadOnly(v: bool)Sets the read only value.
SetRequired(v: bool)Sets the required value.
SetMultiline(v: bool)Sets the multiline value.
SetPassword(v: bool)Sets the password value.
SetMaxLen(n: int)SetMaxLen sets the maximum number of characters.

See Also