{{sidenavigation.sidenavigationExpandLabel}}
{{getMsg('Help_YouAreHere')}}: {{page.title}} {{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}} {{helpModel.downloadHelpPdfDataStatus}}

In Array operator

Checks if the array contains the specified element.

Usage:

x in y

Returns:

True if the array y contains the value x.

Examples:

1 in [1,2,3,4]
-> Returns True.

Basic Syntax

Dim monthOfFirstQuarter() As String
monthOfFirstQuarter = Array("January", "February", "March")
"April" In monthOfFirstQuarter
-> Returns False.

Crystal Syntax

StringVar array monthOfFirstQuarter := ["January", "February", "March"];
"April" In monthOfFirstQuarter
-> Returns False.
i-net Clear Reports
This application uses cookies to allow login. By continuing to use this application, you agree to the use of cookies.


Help - In Array