IVsDynamicTabProvider.GetTabStop(IVsTextLines, Int32, TabStop[]) 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.
Gets the TabStop for the given text buffer and line.
public:
int GetTabStop(Microsoft::VisualStudio::TextManager::Interop::IVsTextLines ^ pBuffer, int iLine, cli::array <Microsoft::VisualStudio::TextManager::Interop::TabStop> ^ sTabStop);
int GetTabStop(Microsoft::VisualStudio::TextManager::Interop::IVsTextLines const & pBuffer, int iLine, std::Array <Microsoft::VisualStudio::TextManager::Interop::TabStop> const & sTabStop);
public int GetTabStop (Microsoft.VisualStudio.TextManager.Interop.IVsTextLines pBuffer, int iLine, Microsoft.VisualStudio.TextManager.Interop.TabStop[] sTabStop);
abstract member GetTabStop : Microsoft.VisualStudio.TextManager.Interop.IVsTextLines * int * Microsoft.VisualStudio.TextManager.Interop.TabStop[] -> int
Public Function GetTabStop (pBuffer As IVsTextLines, iLine As Integer, sTabStop As TabStop()) As Integer
Parameters
- pBuffer
- IVsTextLines
[in] The text buffer within which to find the TabStop.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
[C++]
HRESULT IVsDynamicTabProvider::GetTabStop(
[in] IVsTextLines *pBuffer,
[in] long iLine,
[out] struct TabStop *sTabStop
);