Class ClosingEventArgs
Provides data for the ICodeCompletionProvider.ClosePopup
event.
public class ClosingEventArgs : EventArgs
- Inheritance
-
ClosingEventArgs
Constructors
- ClosingEventArgs(bool, ICodeCompletionProvider)
Initializes a new instance of the
ClosingEventArgs
class with the specific parameters.
Properties
- Accepted
Represents a value indicating whether the value displayed in CodeCompletion window should be accepted.
- CaretOffset
Specifies new caret position within the text when completion window is closed.
- EndPosition
Specifies position within the text where code completion window is valid. StartPosition
- Handled
Represents the boolean value indicating whether popup should be closed or not.
- InsertEndPosition
Specifies position within the text where code completion window is valid. InsertPosition
- InsertPosition
Specifies position within the text where code completion window is valid. InsertEndPosition
- InsertText
Represents the string value to be inserted that returned by popup being closed.
- KeyChar
Represents key code causing code completion window to close.
- NeedSmartFormat
Represents a value indicating whether the multi-line text should be formatted when inserting to the edit control.
- NeedSmartIndent
Represents a value indicating whether the text being inserted be indented when inserting to the edit control.
- Provider
Represents the object that provides data for code completion.
- SkipKeyChar
Indicates that key character which committed selection should not be inserted in the editor.
- StartPosition
Specifies position within the text where code completion window is valid. EndPosition
- Text
Represents the string value that returned by popup being closed.
- UseIndent
Represents a value indicating whether the multi-line text should be indented when inserting to the edit control.
- UseTextAndInsertText
Represents a value indicating whether the multi-line text should be insert both text and insertText to the edit control.