|
USERCLASSTYPE
The USERCLASSTYPE enumeration constants indicate the different variants of the display name
associated with a class of objects. They are used in the IOleObject::GetUserType method and the OleRegGetUserType function. These constants are defined in ole2.h and in the IOleObject interface (oleobj.idl).
typedef enum tagUSERCLASSTYPE
{
USERCLASSTYPE_FULL = 1,
USERCLASSTYPE_SHORT = 2,
USERCLASSTYPE_APPNAME = 3,
} USERCLASSTYPE;
Elements
USERCLASSTYPE_FULL
Indicates the full type name of the class.
USERCLASSTYPE_SHORT
Indicates a short name (maximum of 15 characters) that is used for popup menus
and the Links dialog box.
USERCLASSTYPE_APPNAME
Indicates the name of the application servicing the class and is used in the
Result text in dialogs.
See Also
IOleObject::GetUserType, OleRegGetUserType
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
|