IBraceCompletionSession 介面
Represents a brace completion session for the purpose of tracking a pair of braces and handling actions occurring between the OpeningPoint and ClosingPoint.
命名空間: Microsoft.VisualStudio.Text.BraceCompletion
組件: Microsoft.VisualStudio.Text.UI (在 Microsoft.VisualStudio.Text.UI.dll 中)
語法
'宣告
Public Interface IBraceCompletionSession
public interface IBraceCompletionSession
public interface class IBraceCompletionSession
type IBraceCompletionSession = interface end
public interface IBraceCompletionSession
IBraceCompletionSession 類型會公開下列成員。
屬性
名稱 | 描述 | |
---|---|---|
![]() |
ClosingBrace | Gets the closing brace character. |
![]() |
ClosingPoint | Gets the ending point of the session. |
![]() |
OpeningBrace | Gets the opening brace character. |
![]() |
OpeningPoint | Gets the starting point of the session. |
![]() |
SubjectBuffer | Gets the subject buffer in which the brace completion session is occurring. |
![]() |
TextView | Gets the text view in which the brace completion session is occurring. |
回頁首
方法
名稱 | 描述 | |
---|---|---|
![]() |
Finish | Called after the session has been removed from the stack. |
![]() |
PostBackspace | Called by the editor after the character has been removed. |
![]() |
PostDelete | Called by the editor after the delete action. |
![]() |
PostOverType | Called by the editor after the closing brace character has been typed. |
![]() |
PostReturn | Called by the editor after the newline has been inserted. |
![]() |
PostTab | Called by the editor after the tab has been inserted. |
![]() |
PreBackspace | Called by the editor before the character has been removed. |
![]() |
PreDelete | Called by the editor when delete is pressed within the session. |
![]() |
PreOverType | Called by the editor when the closing brace character has been typed and before it is inserted into the buffer. |
![]() |
PreReturn | Called by the editor when return is pressed within the session. |
![]() |
PreTab | Called by the editor when tab has been pressed and before it is inserted into the buffer. |
![]() |
Start | Called before the session is added to the stack. |
回頁首