Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Determines whether any items are available to preview in the clipboard ring.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function AreDataObjectsAvailable ( _
pTarget As IVsToolboxUser, _
<OutAttribute> ByRef pbItemsAvailable As Integer _
) As Integer
int AreDataObjectsAvailable(
IVsToolboxUser pTarget,
out int pbItemsAvailable
)
int AreDataObjectsAvailable(
[InAttribute] IVsToolboxUser^ pTarget,
[OutAttribute] int% pbItemsAvailable
)
abstract AreDataObjectsAvailable :
pTarget:IVsToolboxUser *
pbItemsAvailable:int byref -> int
function AreDataObjectsAvailable(
pTarget : IVsToolboxUser,
pbItemsAvailable : int
) : int
Parameters
pTarget
Type: Microsoft.VisualStudio.Shell.Interop.IVsToolboxUser[in] Used by the Toolbox to ensure that the next item is supported.
pbItemsAvailable
Type: System.Int32%[out] If true, then items are available to preview. If false, then items are not available.
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 vsshell.idl:
HRESULT IVsToolboxClipboardCycler::AreDataObjectsAvailable(
[in] IVsToolboxUser *pTarget,
[out] BOOL *pbItemsAvailable
);
.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.