|
FORMATETC
The FORMATETC structure is a generalized Clipboard format. It is enhanced to encompass a
target device, the aspect or view of the data, and a storage medium indicator.
Where one might expect to find a Clipboard format, OLE uses a FORMATETC data structure instead.
Defined in the IEnumFORMATETC interface.
typedef struct tagFORMATETC
{
CLIPFORMAT cfFormat;
DVTARGETDEVICE *ptd;
DWORD dwAspect;
LONG lindex;
DWORD tymed;
}FORMATETC; *LPFORMATETC;
Members
cfFormat
Indicates the particular clipboard format of interest. There are three types
of formats recognized by OLE:
- Standard interchange formats, such as CF_TEXT.
- Private application formats understood only by the application offering the
format, or by other applications offering similar features.
- OLE formats, which are used to create linked or embedded objects.
ptd
Points to a DVTARGETDEVICE structure containing information about the target device for which the data
is being composed. A NULL value is used whenever the specified data format is
independent of the target device or when the caller doesn't care what device is
used. In the latter case, if the data requires a target device, the object
should pick an appropriate default device (often the display for visual components).
Data obtained from an object with a NULL target device, such as most
metafiles, is independent of the target device. The resulting data is usually the same
as it would be if the user chose the Save As command from the File menu and
selected an interchange format.
dwAspect
Specifies one of the DVASPECT enumeration constants that indicate how much detail should be contained in
the rendering. A single clipboard format can support multiple aspects or views of
the object. Most data and presentation transfer and caching methods pass
aspect information. For example, a caller might request an object's iconic picture,
using the metafile clipboard format to retrieve it. Note that only one DVASPECT value can be used in dwAspect. That is, dwAspect cannot be the result of a BOOLEAN OR operation on several DVASPECT values.
lindex
Identifies part of the aspect when the data must be split across page
boundaries. The most common value is -1, which identifies all of the data. For the
aspects DVASPECT_THUMBNAIL and DVASPECT_ICON, lindex is ignored.
tymed
Specifies one of the TYMED enumeration constants which indicate the type of storage medium used to
transfer the object's data. Data can be transferred using whatever medium makes
sense for the object. For example, data can be passed using global memory, a disk
file, or structured storage objects. For more information, see the TYMED enumeration.
Comments
The FORMATETC structure is used by methods in the data transfer and presentation interfaces
as a parameter specifying the data being transferred. For example, the IDataObject::GetData method uses the FORMATETC structure to indicate exactly what kind of data the caller is requesting.
See Also
DVASPECT, IDataAdviseHolder, IDataObject, IEnumFORMATETC, IOleCache, OleCreate, OleCreateFromData, OleCreateLinkFromData, OleCreateStaticFromData, OleCreateLink, OleCreateLinkToFile, OleCreateFromFile, STATDATA, STGMEDIUM, TYMED
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|