VsTextPackageClass.NavigateToLineAndColumn Method
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.
Finds or creates an appropriate view on the specified buffer and places the selection at the specified location.
public:
virtual int NavigateToLineAndColumn(Microsoft::VisualStudio::TextManager::Interop::IVsTextBuffer ^ pBuffer, Guid % guidDocViewType, int iStartRow, int iStartIndex, int iEndRow, int iEndIndex) = Microsoft::VisualStudio::TextManager::Interop::IVsTextManager::NavigateToLineAndColumn;
public:
virtual int NavigateToLineAndColumn(Microsoft::VisualStudio::TextManager::Interop::IVsTextBuffer ^ pBuffer, Guid % guidDocViewType, int iStartRow, int iStartIndex, int iEndRow, int iEndIndex);
public virtual int NavigateToLineAndColumn (Microsoft.VisualStudio.TextManager.Interop.IVsTextBuffer pBuffer, ref Guid guidDocViewType, int iStartRow, int iStartIndex, int iEndRow, int iEndIndex);
abstract member NavigateToLineAndColumn : Microsoft.VisualStudio.TextManager.Interop.IVsTextBuffer * Guid * int * int * int * int -> int
override this.NavigateToLineAndColumn : Microsoft.VisualStudio.TextManager.Interop.IVsTextBuffer * Guid * int * int * int * int -> int
Public Overridable Function NavigateToLineAndColumn (pBuffer As IVsTextBuffer, ByRef guidDocViewType As Guid, iStartRow As Integer, iStartIndex As Integer, iEndRow As Integer, iEndIndex As Integer) As Integer
Parameters
- pBuffer
- IVsTextBuffer
[in] Pointer to the IVsTextBuffer interface.
- guidDocViewType
- Guid
[in] GUID identifying the view. This value should always be LOGVIEWID_TextView.
- iStartRow
- Int32
[in] Starting line for the selection to locate.
- iStartIndex
- Int32
[in] Starting index for the selection to locate.
- iEndRow
- Int32
[in] Ending line for the selection to locate.
- iEndIndex
- Int32
[in] Ending index for the selection to locate.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.