|
Format Identifiers
Property set values are stored in a section that is tagged with a unique
format identifier. For example, the FMTID for the OLE Document Summary Information
property set is:
F29F85E0-4FF9-1068-AB91-08002B27B3D9
To define a FMTID for the Document Summary Information property set, you would
use the DEFINE_GUID macro in an include file for the code that manipulates the property set:
DEFINE_GUID(FormatID_SummaryInformation, 0xF29F85E0, 0x4FF9, 0x1068, 0xAB,
0x91, 0x08, 0x00, 0x2B, 0x27, 0xB3, 0xD9);
Anywhere in your code you need to use the FMTID for the Document Summary
Information property set, you can access it through the FormatID_SummaryInformation
variable.
When storing property sets in IStorage instances, you need to convert the FMTID to a string name for the storage
object. For more information on recommended conventions for creating the string
name, see the section "Naming Property Sets" later in this appendix.
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
TMS Scripter Studio Pro components for Delphi/C++Builder
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
|