ModulePage.EditProperties Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Launches a user interface (UI) to edit the properties of an object.
Overloads
EditProperties(IPropertyEditingUser, Object, String, String, EventHandler) |
Launches a user interface (UI) to edit the properties of the specified object, based on the specified event handler. |
EditProperties(IPropertyEditingUser, Object, String, String) |
Launches a user interface (UI) to edit the properties of the specified object. |
EditProperties(IPropertyEditingUser, Object, String, String, EventHandler)
Launches a user interface (UI) to edit the properties of the specified object, based on the specified event handler.
protected:
bool EditProperties(Microsoft::Web::Management::Client::IPropertyEditingUser ^ user, System::Object ^ targetObject, System::String ^ titleText, System::String ^ helpText, EventHandler ^ showHelp);
protected bool EditProperties (Microsoft.Web.Management.Client.IPropertyEditingUser user, object targetObject, string titleText, string helpText, EventHandler showHelp);
member this.EditProperties : Microsoft.Web.Management.Client.IPropertyEditingUser * obj * string * string * EventHandler -> bool
Protected Function EditProperties (user As IPropertyEditingUser, targetObject As Object, titleText As String, helpText As String, showHelp As EventHandler) As Boolean
Parameters
- user
- IPropertyEditingUser
An instance of a class that implements the IPropertyEditingUser interface.
- targetObject
- Object
The object to be edited.
- titleText
- String
The title for the edit dialog box.
- helpText
- String
Information displayed in a label on the edit dialog box.
- showHelp
- EventHandler
The EventHandler that is called if the user clicks the Help button on the edit dialog box.
Returns
true
if the edit was successful; otherwise, false
.
Applies to
EditProperties(IPropertyEditingUser, Object, String, String)
Launches a user interface (UI) to edit the properties of the specified object.
protected:
bool EditProperties(Microsoft::Web::Management::Client::IPropertyEditingUser ^ user, System::Object ^ targetObject, System::String ^ titleText, System::String ^ helpText);
protected bool EditProperties (Microsoft.Web.Management.Client.IPropertyEditingUser user, object targetObject, string titleText, string helpText);
member this.EditProperties : Microsoft.Web.Management.Client.IPropertyEditingUser * obj * string * string -> bool
Protected Function EditProperties (user As IPropertyEditingUser, targetObject As Object, titleText As String, helpText As String) As Boolean
Parameters
- user
- IPropertyEditingUser
An instance of a class that implements the IPropertyEditingUser interface.
- targetObject
- Object
The object to be edited.
- titleText
- String
The title for the edit dialog box.
- helpText
- String
Information displayed in a label on the edit dialog box.
Returns
true
if the edit was successful; otherwise, false
.