Makes the property page visible or invisible, according to the supplied command parameter.
Namespace: Microsoft.VisualStudio.Package
Assembly: MPF.Project.NonShipping (in MPF.Project.NonShipping.dll)
Syntax
'宣言
Public Overridable Sub Show ( _
cmd As UInteger _
)
'使用
Dim instance As SettingsPage
Dim cmd As UInteger
instance.Show(cmd)
public virtual void Show(
uint cmd
)
public:
virtual void Show(
unsigned int cmd
)
public function Show(
cmd : uint
)
Parameters
cmd
Type: System.UInt32The value that indicates whether or not to show the page. Possible values are SW_SHOW or SW_SHOWNORMAL to show and SW_HIDE to hide.
Implements
Remarks
By default this method shows the property page no matter what the value of the parameter is. When overridden in derived classes, it should both show and hide the property page.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.