|
OLECONTF
The OLECONTF enumeration indicate the kind of objects to be enumerated by the returned IEnumUnknown interface. OLECONTF contains a set of bitwise constants used in the IOleContainer::EnumObjects method.
typedef enum tagOLECONTF
{
OLECONTF_EMBEDDINGS = 1;
OLECONTF_LINKS = 2;
OLECONTF_OTHERS = 4;
OLECONTF_ONLYUSER = 8;
OLECONTF_ONLYIFRUNNING = 16
} OLECONTF;
Elements
OLECONTF_EMBEDDINGS
Enumerate the embedded objects in the container.
OLECONTF_LINKS
Enumerate the linked objects in the container.
OLECONTF_OTHERS
Enumerate all objects in the container that are not OLE compound document
objects (i.e.; objects other than linked or embedded objects). Use this flag to
enumerate the container's pseudo-objects.
OLECONTF_ONLYUSER
Enumerate only those objects the user is aware of. For example; hidden
named-ranges in Microsoft Excel would not be enumerated using this value.
OLECONTF_ONLYIFRUNNING
Enumerate only those linked or embedded objects that are currently in the
running state for this container.
See Also
IEnumUnknown, IOleContainer::EnumObjects
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|