WebPart.Title Property

Definition

Gets or sets the title of a part control.

public:
 virtual property System::String ^ Title { System::String ^ get(); void set(System::String ^ value); };
[System.Web.UI.WebControls.WebParts.Personalizable]
public override string Title { get; set; }
[<System.Web.UI.WebControls.WebParts.Personalizable>]
member this.Title : string with get, set
Public Overrides Property Title As String

Property Value

A string that represents the title of the part control. The default value is an empty string ("").

Implements

Attributes

Remarks

If a developer assigns a value to the Title property, then that value determines all (or at least part of) the text in the control's title bar. The title text also appears as part of the ToolTip text when you position your mouse pointer over the title bar of a WebPart control or other server control that appears in a WebPartZone zone.

The complete text displayed in a control's title bar is also affected by the Subtitle property. If that property has a value assigned to it, the value is concatenated to the title. If no value is assigned to the Title property, a calculated title is displayed. At any point, developers can retrieve the actual, total text displayed in a WebPart control's title bar by getting the value of the DisplayTitle property.

The style of the title text is determined by the PartTitleStyle property of the zone that contains the part control.

For a code example that demonstrates the use of the base property, see the Title property.

Applies to

See also