|
|
|
|
|
|
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| shlobj.h
| Unicode
| No
| Platform Notes
| None
|
|
|
IShellPropSheetExt::AddPages
[Now Supported on Windows NT]
Adds one or more pages to a property sheet that the shell displays for a file
object. When it is about to display the property sheet, the shell calls the AddPages method of each property sheet handler registered to the file type.
HRESULT STDMETHODCALLTYPE AddPages(
IShellPropSheetExt FAR *pProp,
|
| LPFNADDPROPSHEETPAGE lpfnAddPage,
|
| LPARAM lParam
|
| );
|
|
Parameters
pProp
Pointer to the IShellPropSheetExt interface. In C++, this parameter is implicit.
lpfnAddPage
Pointer to a function that the property sheet handler calls to add a page to
the property sheet. The function takes a property sheet handle returned by the CreatePropertySheetPage function and the lParam parameter passed to the AddPages method.
lParam
Parameter to pass to the function specified by lpfnAddPage.
Return Values
Returns NOERROR if successful or an OLE-defined error value otherwise.
For each page it needs to add to a property sheet, a property sheet handler
fills a PROPSHEETPAGE structure, calls CreatePropertySheetPage, and then calls the function specified by lpfnAddPage.
See Also
CreatePropertySheetPage, IShellPropSheetExt, PROPSHEETPAGE
Related Links
Software 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 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.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 (tapi.hlp)
Unix Manual Pages
|