Decrypt Function

Action

Decrypts text in a password field.

Syntax

SetText (Decrypt (sText))
Variable Description
sText The password text to decrypt. STRING.

Notes

Returns the decrypted value, which is passed as a parameter to SetText().

Example 1

PasswordField.SetText(Decrypt("EncryptedValueForPassword"))

Example 2

 varMyVariable = Decrypt("EncryptedValue") 
SetText(varMyVariable)