LanguageService.ScrollToEnd Method

Definition

Update the view to show the end of the source file.

Overloads

ScrollToEnd(IVsWindowFrame)

Updates the view in the specified window frame to show the end of the source file.

ScrollToEnd(IVsTextView)

Updates the specified view to show the end of the source file.

Remarks

These methods are typically called when the user presses Ctrl-End in the view.

ScrollToEnd(IVsWindowFrame)

Updates the view in the specified window frame to show the end of the source file.

public:
 void ScrollToEnd(Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ frame);
public:
 void ScrollToEnd(Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ frame);
void ScrollToEnd(Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame const & frame);
public void ScrollToEnd (Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame frame);
member this.ScrollToEnd : Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame -> unit
Public Sub ScrollToEnd (frame As IVsWindowFrame)

Parameters

frame
IVsWindowFrame

[in] The IVsWindowFrame containing the view to update.

Remarks

The base method gets the IVsTextView from the IVsWindowFrame object and calls the other Microsoft.VisualStudio.Package.LanguageService.ScrollToEnd.

Applies to

ScrollToEnd(IVsTextView)

Updates the specified view to show the end of the source file.

public:
 void ScrollToEnd(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ view);
public:
 void ScrollToEnd(Microsoft::VisualStudio::TextManager::Interop::IVsTextView ^ view);
void ScrollToEnd(Microsoft::VisualStudio::TextManager::Interop::IVsTextView const & view);
public void ScrollToEnd (Microsoft.VisualStudio.TextManager.Interop.IVsTextView view);
member this.ScrollToEnd : Microsoft.VisualStudio.TextManager.Interop.IVsTextView -> unit
Public Sub ScrollToEnd (view As IVsTextView)

Parameters

view
IVsTextView

[in] The view to update.

Remarks

The base method positions the view to show the end of the source file.

Applies to