Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Get the attribute's status by index. Also sets the position for other methods not specifying an index.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetAttributeStatusIndex ( _
index As Integer, _
<OutAttribute> ByRef pfActive As Integer _
) As Integer
'Usage
Dim instance As IVsHelpAttributeList
Dim index As Integer
Dim pfActive As Integer
Dim returnValue As Integer
returnValue = instance.GetAttributeStatusIndex(index, _
pfActive)
int GetAttributeStatusIndex(
int index,
out int pfActive
)
int GetAttributeStatusIndex(
[InAttribute] int index,
[OutAttribute] int% pfActive
)
abstract GetAttributeStatusIndex :
index:int *
pfActive:int byref -> int
function GetAttributeStatusIndex(
index : int,
pfActive : int
) : int
Parameters
- index
Type: System.Int32
[in] Index indicating the position of the attribute in the list.
- pfActive
Type: System.Int32%
[out] Pointer to a Boolean. Set to true if the attribute is active.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IVsHelpAttributeList::GetAttributeStatusIndex(
[in] int index,
[out] BOOL *pfActive
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.