PROP_PAGE( clsid )
Parameters
clsid
[in] The CLSID of a property page.
Remarks
Use this macro to enter a property page CLSID into the object's property map. PROP_PAGE is similar to PROP_ENTRY, but does not require a property description or DISPID.
Note If you have already entered a CLSID with PROP_ENTRY or PROP_ENTRY_EX, you do not need to make an additional entry with PROP_PAGE.
The BEGIN_PROP_MAP macro marks the beginning of the property map; the END_PROPERTY_MAP macro marks the end.
Example
BEGIN_PROPERTY_MAP( CMyClass )
PROP_PAGE( CLSID_CMyClassPropPage1 )
PROP_PAGE( CLSID_CMyClassPropPage2 )
END_PROPERTY_MAP( )