[
ComImport,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("B196B28D-BAB4-101A-B69C-00AA00341D07")
]
interface IPropertyPage
{
void SetPageSite(IPropertyPageSite pPageSite);
void Activate(IntPtr hWndParent, [In] ref RECT pRect, bool bModal);
void Deactivate();
void GetPageInfo(ref PROPPAGEINFO pPageInfo);
void SetObjects(uint cObjects,
[MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.IUnknown, SizeParamIndex = 0)] object[] ppunk);
void Show(uint nCmdShow);
void Move([In] ref RECT pRect);
[PreserveSig]
int IsPageDirty();
void Apply();
void Help(string pszHelpDir);
[PreserveSig]
int TranslateAccelerator(ref MSG pMsg);
}
<ComImport> _
<Guid("B196B28D-BAB4-101A-B69C-00AA00341D07")> _
<InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _
Interface IPropertyPage
TODO
End Interface
None.