|
|
|
|
|
Default (Property) In french: Défaut
The Default property determines if a parameter has been passed to a procedure with a custom or default value. // Call the procedure MyProc("A")
// Declare the procedure PROCÉDURE MyProc(p1, po2 = "Y", po3 = "Z")
MyParameters[1].Default
p1.Default
MyParameters[2].Default
po2.Default
MyParameters[3].Default
po3.Default
Syntax
<Result> = <Parameter used>.Default
<Result>: Boolean - True if the parameter was not specified during the call to the procedure (the default value was used),
- False otherwise.
<Parameter used>: Parameter name Name of the parameter used. This parameter is defined:- using the MyParameters keyword and specifying the index of the parameter used. For example: MyParameters[1] to manipulate the first parameter passed to the procedure.
- using the parameter name specified in the procedure declaration.
Remarks - The Default property only takes into account the parameters passed to the current procedure. If multiple procedures are nested and pass the same parameter with or without the default value, the Default property only takes into account the value of the parameter in the procedure where the property is used.
- The Default property can only be used in the process in which the element is declared.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|