PropertyGridEditorPart.Title Property
Assembly: System.Web (in system.web.dll)
public: virtual property String^ Title { String^ get () override; void set (String^ value) override; }
/** @property */ public String get_Title () /** @property */ public void set_Title (String value)
public override function get Title () : String public override function set Title (value : String)
Property Value
A string that is used as the title of the control. The default value is a calculated control name supplied by the Web Parts control set.The Title property value is displayed in the title bar of a PropertyGridEditorPart control when the control is visible in edit mode. When the control is declared in a page, you can set a value for the Title attribute. If you do not supply a value for the title, a culture-specific default value is supplied.
The Title property overrides the base property so that, if no title value is supplied, a default title appropriate to a PropertyGridEditorPart control can be supplied by the Web Parts control set.
This code example demonstrates how to use the Title property of a PropertyGridEditorPart control. For the full code required to run the example, see the Example section of the PropertyGridEditorPart class overview topic.
The following code example shows how to set the title on a PropertyGridEditorPart control declaratively in a Web page.
The next part of the code example shows how to set the value of the Title property programmatically. In order to persist the programmatically assigned value, a static variable named editControlTitle is used, and this value is assigned to the Title property each time the control is initialized, so that the value is persisted between postback events.
When you load the page in a browser, you can select Edit Mode in the Display Mode drop-down list control to switch to edit mode. You can click the verbs menu (the downward arrow) in the title bar of the User Information WebPart control, and click Edit to begin editing. When the editing user interface (UI) is visible, you can see the PropertyGridEditorPart control, and a button and text box positioned above it. Note that the title of the PropertyGridEditorPart control is the value assigned to it in the declarative markup of the Web page. If you enter some text in the text box next to the Update EditorPart Title button, and then click the button, the title for the control is updated.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.