DateField
Overview
DateField is a type in Aspose.PDF FOSS for Go.
Inherits from: TextBoxField.
DateField is a text field with a JavaScript date-format action and a format mask (e.g.
This type provides 11 methods for working with DateField objects in Go programs.
Available methods include: Format, 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
| Signature | Description |
|---|---|
Format() → string | Format returns the date field’s format mask (parsed back from its format JS). |
Value() → string | Returns the value. |
SetValue(s: string) → error | Sets the value value. |
MaxLen() → int | Returns the max len. |
IsMultiline() → bool | Returns true if multiline is set. |
IsPassword() → bool | Returns 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. |