Hi,
how can I change that intellisense suggestion only applies when user presses return or tab key. Currently it applies automatically when user types any key (i.e. such as space or '(' ) except escape.
Hi,
how can I change that intellisense suggestion only applies when user presses return or tab key. Currently it applies automatically when user types any key (i.e. such as space or '(' ) except escape.
Hi Miguel,
The CompletionSession.AllowedCharacters and CommitCharacters CharClass-based properties are what determine the behavior for typed text. If the typed character is not in AllowedCharacters, the session will either commit or cancel based on if there is a full selection and if the character is in the CommitCharacters. To sum up, you'd want to add space, etc. to AllowedCharacters.
Thanks, that worked!
Please log in to a validated account to post comments.