Description
Read-write. Sets or returns the imprinter string for the current data image. If imprinter strings are not used and one has not been set, the property returns “N/A.”
Applicable Events
Post Extract, AnyApp Post Extract, Pre-Verify, Interactive, Verification Function Key (F-Key), Post-Verify
Syntax
object.ImprinterString [ = strImprinterString]
Parameters
Object is a reference to the Form object. For more information, see Form Object (page Form Object).
ImprinterString is the command.
strImprinterString is a string value to which the imprinter string is set.
Example
If Form.ImprinterString <> "N/A" Then
strPageNo = Right(Form.ImprinterString, 3)
End if
‘Set Imprinter String
Form.ImprinterString = “00001”