ProposalScenario Enum
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.
What triggered a request for a proposal?
public enum ProposalScenario
type ProposalScenario =
Public Enum ProposalScenario
- Inheritance
-
ProposalScenario
Fields
Name | Value | Description |
---|---|---|
Completion | 0 | There was a change in the selected IntelliSense selection. |
TypeChar | 1 | The user typed a character. In this case the triggeringCharacter parameter will indicate the character the user typed. |
Return | 2 | The user typed return and a new line was inserted. |
CaretMove | 3 | The caret was moved. |
DivergedProposal | 4 | A proposal had been displayed and the user did something that didn't match the proposal. |
CompletedProposal | 5 | The user accepted a proposal. |
ExplicitInvocation | 6 | The user performed a command to explicitly generate a proposal. |
Backspace | 7 | The user typed backspace. |
CompletionAccepted | 8 | An Intellisence selection was accepted. |