Método IVsLiteTree.GetOffsetFromParent (UInt32, UInt32, UInt32)
Publicado: abril de 2016
Retorna o deslocamento entre o índice de um nó pai e um índice relativo.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetOffsetFromParent(
uint ParentAbsIndex,
uint RelIndex,
out uint pOffset
)
int GetOffsetFromParent(
unsigned int ParentAbsIndex,
unsigned int RelIndex,
[OutAttribute] unsigned int% pOffset
)
abstract GetOffsetFromParent :
ParentAbsIndex:uint32 *
RelIndex:uint32 *
pOffset:uint32 byref -> int
Function GetOffsetFromParent (
ParentAbsIndex As UInteger,
RelIndex As UInteger,
<OutAttribute> ByRef pOffset As UInteger
) As Integer
Parâmetros
- ParentAbsIndex
[in] Integer que contém o índice absoluto do pai.
- RelIndex
[in] Integer que contém o índice relativo de um nó na lista de árvore.
- pOffset
[out] Ponteiro para um inteiro contendo o deslocamento.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
[C++]
De vsshell.idl:
HRESULT IVsLiteTree::GetOffsetFromParent(
[in] ULONG ParentAbsIndex,
[in] ULONG RelIndex,
[out] ULONG *pOffset
);
Consulte também
Interface IVsLiteTree
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo