IVsToolboxClipboardCycler.AreDataObjectsAvailable Method
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
'Usage
Dim instance As IVsToolboxClipboardCycler
Dim pTarget As IVsToolboxUser
Dim pbItemsAvailable As Integer
Dim returnValue As Integer
returnValue = instance.AreDataObjectsAvailable(pTarget, _
pbItemsAvailable)
int AreDataObjectsAvailable(
IVsToolboxUser pTarget,
out int pbItemsAvailable
)
int AreDataObjectsAvailable(
[InAttribute] IVsToolboxUser^ pTarget,
[OutAttribute] int% pbItemsAvailable
)
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.
See Also
Reference
IVsToolboxClipboardCycler Interface