TextBox

In the first example, %%PEPasswordChar is used to specify “#” as the mask character in a text box. %%PEMaxLength limits the input to 18 characters.

<%%PEEditorType("TextBox"),_
 %%PEPasswordChar("#"),_
 %%PEMaxLength("18")>_
Parameter Rule passwd As String = ""
Note: The default value of %%PEMaxLength is 0. This allows unlimited string length.

In the next example, %%PECharacterCasing is set to “Upper”, to convert all characters entered in the text box to upper case.

<%%PEEditorType("TextBox"),_
 %%Prompt("Type your name"),_
 %%PECharacterCasing("Upper")>_
Parameter Rule test As String = ""

Result: