Share via


ScopeNode.ShowPropertySheet Method (String, Boolean)

 

Displays a property sheet for the scope node and uses a flag to indicate whether the APPLY button is to be hidden. This method brings an existing sheet to the foreground.

Namespace:   Microsoft.ManagementConsole
Assembly:  Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)

Syntax

public bool ShowPropertySheet(
    string title,
    bool hideApplyButton
)
public:
bool ShowPropertySheet(
    String^ title,
    bool hideApplyButton
)
member ShowPropertySheet : 
        title:string *
        hideApplyButton:bool -> bool
Public Function ShowPropertySheet (
    title As String,
    hideApplyButton As Boolean
) As Boolean

Parameters

  • title
    Type: System.String

    The title of the property sheet to be displayed.

  • hideApplyButton
    Type: System.Boolean

    A flag that indicates whether the APPLY button is to be hidden. To hide the button, the flag is true; otherwise, the flag is false.

Return Value

Type: System.Boolean

False if the property sheet is already being displayed; true otherwise.

See Also

ShowPropertySheet Overload
ScopeNode Class
Microsoft.ManagementConsole Namespace

Return to top