IVsDynamicTabProvider.GetTabStop Method

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Syntax

'Déclaration
Function GetTabStop ( _
    pBuffer As IVsTextLines, _
    iLine As Integer, _
    <OutAttribute> sTabStop As TabStop() _
) As Integer
'Utilisation
Dim instance As IVsDynamicTabProvider
Dim pBuffer As IVsTextLines
Dim iLine As Integer
Dim sTabStop As TabStop()
Dim returnValue As Integer

returnValue = instance.GetTabStop(pBuffer, _
    iLine, sTabStop)
int GetTabStop(
    IVsTextLines pBuffer,
    int iLine,
    TabStop[] sTabStop
)
int GetTabStop(
    [InAttribute] IVsTextLines^ pBuffer, 
    [InAttribute] int iLine, 
    [OutAttribute] array<TabStop>^ sTabStop
)
abstract GetTabStop : 
        pBuffer:IVsTextLines * 
        iLine:int * 
        sTabStop:TabStop[] byref -> int 
function GetTabStop(
    pBuffer : IVsTextLines, 
    iLine : int, 
    sTabStop : TabStop[]
) : int

Parameters

Return Value

Type: System.Int32
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
);

.NET Framework Security

See Also

Reference

IVsDynamicTabProvider Interface

IVsDynamicTabProvider Members

Microsoft.VisualStudio.TextManager.Interop Namespace