IntelliSense in Application Engine
Press CTRL+Space to show a list of available functions. When you select a function, a tooltip on the right side of the list box shows the definition, parameters, and a description of the function. To insert the function in the process code, double-click the function or press
.IntelliSense enables you to use various syntax features in the Application Engine Process Editor, for example functions, methods, constants, or enums. Each of these IntelliSense categories has its own icon in the list.
When IntelliSense is used, its content is filtered according to the type of expression before
a cursor. For example, if you call IntelliSense after writing a variable name followed by a
dot method call operator (.)
, IntelliSense shows a list of
methods that can be called on the variable data type:
string myTextVariable = "Some text";
myTextVariable. // Call IntelliSense
If you call IntelliSense after writing an expression followed by a dot method call operator
(.)
, the IntelliSense shows a list of methods that can be
called on the expression data type before a cursor. For example:
string myTextVariable = "Some text";
myTextVariable.Trim().Length(). // Call IntelliSense
(.)
operator.