IntelliPrompts
The RadSyntaxEditor has support for intelliprompts which aim to speed up coding by reducing typos and other common mistakes.
Code Completion
Through the CompletionListWindow you can show a collection of items when the user inputs a given string. To do so, you need to first populate its presenter's CompletionListItems collection.
Example 1: Populate and display the completion list window
Figure 1: Code completion
The code completion popup can also be shown using the Ctrl + Space key combination.
Overload List
Through the OverloadListWindow you can show a collection of overloads when the user tries to invoke a certain method. To do so, you need to first populate its presenter's OverloadListItems collection.