NoViews Property (NotesDominoQuery - LotusScript)
Specifies not to perform any view processing in satisfying a query. Default is False (off).
Defined in
Data type
Boolean
Syntax
To get:
Dim nviews as Boolean
nviews = dquery.Noviews
To set:
dquery.Noviews = True
Legal values
True or False
Usage
Causes view-specific syntax such as the following to fail and the query to produce no results if
the syntax is used:
'Viewname'.column <operator> <value>
In ('viewname1', 'viewname2')
Useful in tuning other syntax terms in their usage of view vs. NSF scanning.