SFVM_PROPPAGE_DATA structure (shlobj_core.h)

Contains the details of a page to be added to an object's Properties sheet.

Syntax

typedef struct _SFVM_PROPPAGE_DATA {
  DWORD                dwReserved;
  LPFNADDPROPSHEETPAGE pfn;
  LPARAM               lParam;
} SFVM_PROPPAGE_DATA;

Members

dwReserved

Type: DWORD

pfn

Type: LPFNADDPROPSHEETPAGE

A pointer to a AddPropSheetPageProc callback function used to add property pages. When this function is used by Windows Explorer, it provides pfn through the system folder view object's IShellView::AddPropertySheetPages method. The callback function can then pass the information to IShellPropSheetExt::AddPages.

lParam

Type: LPARAM

The details of the property sheet to be added. When this function is used by Windows Explorer, it provides lParam through the system folder view object's IShellView::AddPropertySheetPages method. The callback function can then pass the information to IShellPropSheetExt::AddPages.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header shlobj_core.h (include Shlobj.h)