IVsObjectList2.GetClipboardFormat Method
Asks the given list item to renders a specific clipboard format that it supports.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function GetClipboardFormat ( _
index As UInteger, _
grfFlags As UInteger, _
pFormatetc As FORMATETC(), _
pMedium As STGMEDIUM() _
) As Integer
int GetClipboardFormat(
uint index,
uint grfFlags,
FORMATETC[] pFormatetc,
STGMEDIUM[] pMedium
)
int GetClipboardFormat(
[InAttribute] unsigned int index,
[InAttribute] unsigned int grfFlags,
[InAttribute] array<FORMATETC>^ pFormatetc,
[InAttribute] array<STGMEDIUM>^ pMedium
)
abstract GetClipboardFormat :
index:uint32 *
grfFlags:uint32 *
pFormatetc:FORMATETC[] *
pMedium:STGMEDIUM[] -> int
function GetClipboardFormat(
index : uint,
grfFlags : uint,
pFormatetc : FORMATETC[],
pMedium : STGMEDIUM[]
) : int
Parameters
index
Type: UInt32[in] Specifies the index of the list item of interest.
grfFlags
Type: UInt32[in] Specifies multi-selection. Values are taken from the _VSOBJCFFLAGS enumeration.
pFormatetc
Type: array<Microsoft.VisualStudio.OLE.Interop.FORMATETC[][in] Pointer to a FORMATETC structure containing clipboard format information.
pMedium
Type: array<Microsoft.VisualStudio.OLE.Interop.STGMEDIUM[][in] Pointer to a STGMEDIUM structure indicating the data transfer medium.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
[C++]
HRESULT IVsObjectList2::GetClipboardFormat(
[in] ULONG Index,
[in] VSOBJCFFLAGS grfFlags,
[in] FORMATETC *pFormatetc,
in] STGMEDIUM *pMedium
);
When the user requests a copy-paste or drag-drop operation on an item in your object list, the environment calls EnumClipboardFormats to see which formats your list supports. The environment then calls GetClipboardFormat for the item when the actual paste or drop operation happens. You then render the item in the requested format.
.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.