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.
Determines whether or not you can expand an item.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetExpandableAbsolute ( _
AbsIndex As UInteger, _
<OutAttribute> ByRef pfCanExpand As Integer _
) As Integer
'Usage
Dim instance As IVsLiteTree
Dim AbsIndex As UInteger
Dim pfCanExpand As Integer
Dim returnValue As Integer
returnValue = instance.GetExpandableAbsolute(AbsIndex, _
pfCanExpand)
int GetExpandableAbsolute(
uint AbsIndex,
out int pfCanExpand
)
int GetExpandableAbsolute(
[InAttribute] unsigned int AbsIndex,
[OutAttribute] int% pfCanExpand
)
abstract GetExpandableAbsolute :
AbsIndex:uint32 *
pfCanExpand:int byref -> int
function GetExpandableAbsolute(
AbsIndex : uint,
pfCanExpand : int
) : int
Parameters
- AbsIndex
Type: System.UInt32
[in] Absolute index of the item to check.
- pfCanExpand
Type: System.Int32%
[out] Pointer to a Boolean. Set to true if you can expand the item.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
[C++]
From vsshell.idl:
HRESULT IVsLiteTree::GetExpandableAbsolute(
[in] ULONG AbsIndex,
[out] BOOL *pfCanExpand
);
.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.