OraFormsVerifyPropStringArray Function

Action

Verifies all strings in an array.

Include file

OraForms.bdh

Syntax

OraFormsVerifyPropStringArray( in sName     : string, 
                               in nPropId   : number, 
                               in vArray    : array of string, 
                               in nLen      : number, 
                               in nSeverity : number optional := SEVERITY_ERROR ) : boolean;

Return value

  • true if the verification was successful
  • false otherwise
Parameter Description
sName The control's unique name.
nPropId The property ID.
vArray An array of strings to be verified.
nLen The length of the array.
nSeverity Optional: Severity of the error that is raised if the verification fails. Can be one of the following values:
  • SEVERITY_SUCCESS: Success; no error (numerical value: 0)
  • SEVERITY_INFORMATIONAL: Informational; no error (numerical value: 1)
  • SEVERITY_WARNING: Warning; no error (numerical value: 2)
  • SEVERITY_ERROR: (Default) Error; simulation continues (numerical value: 3)
  • SEVERITY_TRANS_EXIT: Error; the active transaction is aborted (numerical value: 4)
  • SEVERITY_PROCESS_EXIT: Error; the simulation is aborted (numerical value: 5)