PROPPAGEINFO (Interfaces)
Last changed: anonymous

.
Summary
The PROPPAGEINFO structure contains parameters used to describe a property page to a property frame.

C# Definition:

[StructLayout(LayoutKind.Sequential)]
public struct PROPPAGEINFO
{
    public UInt32 cb;
    public IntPtr pszTitle;
    public SIZE size;
    public IntPtr pszDocString;
    public IntPtr pszHelpFile;
    public UInt32 dwHelpContext;
}

VB Definition:

   TODO

User-Defined Types:

SIZE

Notes:

Populate pszTitle, pszDocString and pszHelpFile using System.Runtime.InteropServices.Marshal.StringToCoTaskMemUni(string).

Documentation