ViewFilter.OnAutoComplete 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.
Called when the AUTOCOMPLETE command is received.
public:
virtual void OnAutoComplete();
public:
virtual void OnAutoComplete();
virtual void OnAutoComplete();
public virtual void OnAutoComplete ();
abstract member OnAutoComplete : unit -> unit
override this.OnAutoComplete : unit -> unit
Public Overridable Sub OnAutoComplete ()
Remarks
This method process the auto-complete command.
The base method forwards the call to the OnAutoComplete method on the Source class's CompletionSet object. If the CompletionSet 's OnAutoComplete method returns a non-zero character, that character is entered into the source buffer, allowing it to trigger any additional IntelliSense behaviors such as formatting the source.