Método IVsTaskItem3.GetColumnValue (Int32, UInt32, UInt32, Object, String)

 

Publicado: abril de 2016

Retorna o valor dessa tarefa para uma determinada coluna.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Sintaxe

int GetColumnValue(
    int iField,
    out uint ptvtType,
    out uint ptvfFlags,
    out object pvarValue,
    out string pbstrAccessibilityName
)
int GetColumnValue(
    int iField,
    [OutAttribute] unsigned int% ptvtType,
    [OutAttribute] unsigned int% ptvfFlags,
    [OutAttribute] Object^% pvarValue,
    [OutAttribute] String^% pbstrAccessibilityName
)
abstract GetColumnValue : 
        iField:int *
        ptvtType:uint32 byref *
        ptvfFlags:uint32 byref *
        pvarValue:Object byref *
        pbstrAccessibilityName:string byref -> int
Function GetColumnValue (
    iField As Integer,
    <OutAttribute> ByRef ptvtType As UInteger,
    <OutAttribute> ByRef ptvfFlags As UInteger,
    <OutAttribute> ByRef pvarValue As Object,
    <OutAttribute> ByRef pbstrAccessibilityName As String
) As Integer

Parâmetros

  • iField
    [In] Um inteiro que contém a coluna do campo a ser usado.
  • pvarValue
    [Out] Um ponteiro para um objeto do tipo VARIANT.
  • pbstrAccessibilityName
    [Out] Um ponteiro para uma seqüência de caracteres que contém o nome de acessibilidade.

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 IVsTaskItem3::GetColumnValue(
   [in] int iField, 
   [out] VSTASKVALUETYPE* ptvtType, 
   [out] VSTASKVALUEFLAGS* ptvfFlags, 
   [out] VARIANT* pvarValue, 
   [out] BSTR* pbstrAccessibilityName
);

Consulte também

Interface IVsTaskItem3
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo