C# 클래스 PowerStudio.LanguageServices.PowerShell.Intellisense.QuickInfo.QuickInfoController

상속: IIntellisenseController
파일 보기 프로젝트 열기: IntelliTect/PowerStudio

공개 메소드들

메소드 설명
ConnectSubjectBuffer ( ITextBuffer subjectBuffer ) : void

Called when a new subject T:Microsoft.VisualStudio.Text.ITextBuffer appears in the graph of buffers associated with the T:Microsoft.VisualStudio.Text.Editor.ITextView, due to a change in projection or content type.

Detach ( ITextView textView ) : void

Detaches the controller from the specified T:Microsoft.VisualStudio.Text.Editor.ITextView.

DisconnectSubjectBuffer ( ITextBuffer subjectBuffer ) : void

Called when a subject T:Microsoft.VisualStudio.Text.ITextBuffer is removed from the graph of buffers associated with the T:Microsoft.VisualStudio.Text.Editor.ITextView, due to a change in projection or content type.

It is not guaranteed that the subject buffer was previously connected to this controller.

비공개 메소드들

메소드 설명
GetMousePosition ( SnapshotPoint topPosition ) : SnapshotPoint?

Gets the mouse position.

OnTextViewMouseHover ( object sender, MouseHoverEventArgs e ) : void

Called when [text view mouse hover].

QuickInfoController ( ITextView textView, IList subjectBuffers, QuickInfoControllerProvider componentContext ) : System.Collections.Generic

Initializes a new instance of the QuickInfoController class.

메소드 상세

ConnectSubjectBuffer() 공개 메소드

Called when a new subject T:Microsoft.VisualStudio.Text.ITextBuffer appears in the graph of buffers associated with the T:Microsoft.VisualStudio.Text.Editor.ITextView, due to a change in projection or content type.
public ConnectSubjectBuffer ( ITextBuffer subjectBuffer ) : void
subjectBuffer ITextBuffer The newly-connected text buffer.
리턴 void

Detach() 공개 메소드

Detaches the controller from the specified T:Microsoft.VisualStudio.Text.Editor.ITextView.
public Detach ( ITextView textView ) : void
textView ITextView The from which the controller should detach.
리턴 void

DisconnectSubjectBuffer() 공개 메소드

Called when a subject T:Microsoft.VisualStudio.Text.ITextBuffer is removed from the graph of buffers associated with the T:Microsoft.VisualStudio.Text.Editor.ITextView, due to a change in projection or content type.
It is not guaranteed that the subject buffer was previously connected to this controller.
public DisconnectSubjectBuffer ( ITextBuffer subjectBuffer ) : void
subjectBuffer ITextBuffer The disconnected text buffer.
리턴 void