|
Property ID Zero
To enable users of property sets to attach meaning to properties beyond those
provided by the type indicator, property ID zero is reserved for an optional
dictionary of displayable names for the property set.
The dictionary contains a count of entries in the list followed by a list of
dictionary entries.
typedef struct tagDICTIONARY
{
DWORD cbEntries ; // Count of entries in the list
ENTRY rgEntry[ cbEntries ] ; // Property ID/String pair
} DICTIONARY ;
Each dictionary entry in the list is a Property ID/String pair. This can be
illustrated using the following pseudo-structure definition for a dictionary
entry (it's a pseudo-structure because the sz[] member is variable in size):
typedef struct tagENTRY
{
DWORD dwPropID ; // Property ID
DWORD cb ; // Count of characters in the string
char sz[cb]; // Zero-terminated string
} ENTRY ;
Note the following about property set dictionaries:
- Property ID Zero does not have a type indicator. The DWORD that indicates the
count of entries sits in the type indicator position.
- The count of characters in the string (cb) includes the zero character that
terminates the string.
- The dictionary is entirely optional. Not all the names of properties in the
set need appear in the dictionary. The dictionary can omit entries for properties
assumed to be universally known by clients that manipulate the property set.
Typically, names for the base property sets for widely accepted standards are
omitted, but special purpose property sets may include dictionaries for use by
browsers.
- Property names in the dictionary are stored in the code page indicated by
Property ID One (see below). For all code pages other than the Unicode code page
(1200), each name is byte aligned. Thus, there is no padding between property
names with Property ID Zero. If the Unicode code page is specified, the property
name strings must be aligned on 32-bit boundaries.
- Property names that begin with the binary Unicode characters 0x0001 through
0x001F are reserved for future use.
The dictionary is stored as a VT_BLOB | VT_VECTOR value. Each BLOB in the
vector contains the prerequisite DWORD count of bytes followed by a DWORD indicating the Property ID followed by the name (a zero-terminated string).
| 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
|