Query.interactive Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
interactive() |
Specifies whether the query is interactive. |
interactive(Boolean) |
interactive()
Specifies whether the query is interactive.
public:
virtual bool interactive();
public virtual bool interactive ();
abstract member interactive : unit -> bool
override this.interactive : unit -> bool
Public Overridable Function interactive () As Boolean
Returns
true if the query is interactive; otherwise, false.
Remarks
In an interactive query, the query can, for example, present the user with a dialog box when the prompt method is called. This functionality is used when code will be submitted to a batch and in other situations where code must run unattended.
Applies to
interactive(Boolean)
public:
virtual bool interactive(bool _value);
public virtual bool interactive (bool _value);
abstract member interactive : bool -> bool
override this.interactive : bool -> bool
Public Overridable Function interactive (_value As Boolean) As Boolean
Parameters
- _value
- Boolean
A value that indicates whether the query is interactive; optional.