VSPROPSHEETPAGE Members
Include Protected Members
Include Inherited Members
Sets the characteristics of a properties page. Similar to the Win32 PROPSHEETPAGE structure.
The VSPROPSHEETPAGE type exposes the following members.
Methods
Name
Description
Indicates whether this instance and a specified object are equal. (Inherited from ValueType.)
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Returns the hash code for this instance. (Inherited from ValueType.)
Gets the type of the current instance. (Inherited from Object.)
Creates a shallow copy of the current Object. (Inherited from Object.)
Returns the fully qualified type name of this instance. (Inherited from ValueType.)
Top
Fields
Name
Description
Flags that indicate which options to use when creating the property sheet page.
Reserved for future use.
Specifies the size, in bytes, of the structure. The size includes any extra application-defined data at the end of the structure.
Use dwTemplateSize when PSP_DLGINDIRECT is specified in dwFlags. Specifies the size of the template specified in the pTemplate field.
Handle to the instance from which to load a dialog template resource.
If you cannot pass a dialog template, set the HINSTANCE field to a null value and fill in this field instead. A page will then be created, and your hwnd will be attached to it. If you do this, do not use lParam for anything.
When the page is created, a copy of the page's VSPROPSHEETPAGE structure is passed to the dialog box procedure with a WM_INITDIALOG message. The lParam member is provided to allow you to pass application-specific information to the dialog box procedure. It has no effect on the page itself.
Address of the reference count value. To use this member, you must set the PSP_USEREFPARENT flag in the dwFlags member.
Address of an application-defined callback function that is called when the page is created and when it is about to be destroyed. To use this member, you must set the PSP_USECALLBACK flag in the dwFlags member.
Address of the dialog box procedure for the page. Because the pages are created as modeless dialog boxes, the dialog box procedure must not call the EndDialog function.
Dialog box template in memory to use to create the page. If the PSP_DLGINDIRECT flag in the dwFlags member is set, then pTemplate is used.
Used to specify the resource identifier of your dialog template in the module identified by the handle in the HINSTANCE field when PSP_DLGINDIRECT is not specified in dwFlags.
Top