VSTASKCOLUMN Structure
Column definitions for tasks.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Déclaration
Public Structure VSTASKCOLUMN
'Utilisation
Dim instance As VSTASKCOLUMN
public struct VSTASKCOLUMN
public value class VSTASKCOLUMN
[<SealedAttribute>]
type VSTASKCOLUMN = struct end
JScript supports the use of structures, but not the declaration of new ones.
Remarks
These values are returned from GetColumn.
COM Signature
From vsshell80.idl:
typedef struct _VSTASKCOLUMN
{
int iField;
BSTR bstrHeading;
int iImage;
BOOL fShowSortArrow;
BOOL fAllowUserSort;
BOOL fVisibleByDefault;
BOOL fAllowHide;
BOOL fSizeable;
BOOL fMoveable;
int iDefaultSortPriority;
BOOL fDescendingSort;
int cxMinWidth;
int cxDefaultWidth;
BOOL fDynamicSize;
BSTR bstrCanonicalName;
BSTR bstrLocalizedName;
BSTR bstrTip;
BOOL fFitContent;
} VSTASKCOLUMN;
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.