IPropertyPage::Show
Makes the
property page dialog box visible or invisible according to the nCmdShow
parameter. If the page is made visible, the page should set the focus to
itself, specifically to the first property on the page.
HRESULT
Show(
UINT nCmdShow |
//Indicates whether to make the page visible or
hidden |
); |
|
Parameters
nCmdShow
[in] Command
describing whether to become visible (SW_SHOW or SW_SHOWNORMAL) or hidden
(SW_HIDE). No other values are valid for this parameter.
Return Values
This method
supports the standard return values E_INVALIDARG and E_UNEXPECTED, as well as
the following:
S_OK
The show
command was successfully invoked.
Remarks
Notes to Callers
Calls to this
method must occur after a call to IPropertyPage::Activate and before a
corresponding call to IPropertyPage::Deactivate.
Notes to Implementers
E_NOTIMPL is
not a valid return value. E_OUTOFMEMORY is not a valid return value, since no
memory should be used in implementing this method.
See Also