CasewareDocs

Contains

Determines whether the set of parameters contains an element with the specified name.

Compatibility

Available as of IDEA version 9.1.1

Snytax

Contains(parameterName as String)

Parameter

parameterName

The name of the parameter of which the value is requested. The parameter names are case insensitive.

Remark

An exception is thrown if the name is null.

Return Value

True if the set of parameters contains an element with the specified name, otherwise false.

Example

Sub Main

Dim res As Boolean
res 0 SmartContext.Parameters.Contains("P1")

End Sub