IVsTaskItem3.GetColumnValue Method (Int32, UInt32, UInt32, Object, String)
Visual Studio 2015
Returns the value of this task for a given column.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int GetColumnValue( int iField, out uint ptvtType, out uint ptvfFlags, out object pvarValue, out string pbstrAccessibilityName )
Parameters
- iField
-
Type:
System.Int32
[in] An integer containing the Field Column to be used.
- ptvtType
-
Type:
System.UInt32
[out] A pointer to an object of type __VSTASKVALUETYPE.
- ptvfFlags
-
Type:
System.UInt32
[out] A pointer to an object of type __VSTASKVALUEFLAGS.
- pvarValue
-
Type:
System.Object
[out] A pointer to an object of type VARIANT.
- pbstrAccessibilityName
-
Type:
System.String
[out] A pointer to a string containing the Accessibility Name.
Return Value
Type: System.Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsTaskItem3::GetColumnValue( [in] int iField, [out] VSTASKVALUETYPE* ptvtType, [out] VSTASKVALUEFLAGS* ptvfFlags, [out] VARIANT* pvarValue, [out] BSTR* pbstrAccessibilityName );
Show: