Método IVsSimpleObjectList2.GetTextWithOwnership (UInt32, VSTREETEXTOPTIONS, String)
Retorna as representações de texto para o item de lista de árvore solicitada.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int GetTextWithOwnership(
uint index,
VSTREETEXTOPTIONS tto,
out string pbstrText
)
int GetTextWithOwnership(
unsigned int index,
VSTREETEXTOPTIONS tto,
[OutAttribute] String^% pbstrText
)
abstract GetTextWithOwnership :
index:uint32 *
tto:VSTREETEXTOPTIONS *
pbstrText:string byref -> int
Function GetTextWithOwnership (
index As UInteger,
tto As VSTREETEXTOPTIONS,
<OutAttribute> ByRef pbstrText As String
) As Integer
Parâmetros
- index
[in] Especifica o zero com base no índice do item de interesse.
- tto
[in] Especifica o tipo de texto que está sendo solicitado.Valores são obtidas a partir do VSTREETEXTOPTIONS enumeração.
- pbstrText
[out] Retorna o texto do item de lista de árvore especificada.
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
De vsshell80.idl:
HRESULT IVsSimpleObjectList2::GetTextWithOwnership(
[in] ULONG Index,
[in] VSTREETEXTOPTIONS tto,
[out] BSTR *ppszText
);
Esse método retorna uma seqüência de caracteres que contém vários elementos de texto para o item de lista de árvore.
Consulte também
Interface IVsSimpleObjectList2
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo