IVsDynamicTabProvider.GetTabStopElements Method
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function GetTabStopElements ( _
pBuffer As IVsTextLines, _
iLine As Integer, _
<OutAttribute> ByRef cEl As UInteger _
) As Integer
'Usage
Dim instance As IVsDynamicTabProvider
Dim pBuffer As IVsTextLines
Dim iLine As Integer
Dim cEl As UInteger
Dim returnValue As Integer
returnValue = instance.GetTabStopElements(pBuffer, _
iLine, cEl)
int GetTabStopElements(
IVsTextLines pBuffer,
int iLine,
out uint cEl
)
int GetTabStopElements(
[InAttribute] IVsTextLines^ pBuffer,
[InAttribute] int iLine,
[OutAttribute] unsigned int% cEl
)
abstract GetTabStopElements :
pBuffer:IVsTextLines *
iLine:int *
cEl:uint32 byref -> int
function GetTabStopElements(
pBuffer : IVsTextLines,
iLine : int,
cEl : uint
) : int
Parameters
- pBuffer
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextLines
[in]
- iLine
Type: System.Int32
[in]
- cEl
Type: System.UInt32%
[out]
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::GetTabStopElements(
[in] IVsTextLines *pBuffer,
[in] long iLine,
[out] UINT *cEl
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.