WebPart.Description Property

Definition

Gets or sets a brief phrase that summarizes what the part control does, for use in ToolTips and catalogs of part controls.

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

Property Value

A string that briefly summarizes the part control's functionality. The default value is an empty string ("").

Implements

Attributes

Remarks

The Description property is typically a string that is used in catalogs that provide lists of part controls, and as a ToolTip in the part control's title bar. The content of the Description property appears in a ToolTip when you position your mouse pointer over the title text in a part control's title bar. The ToolTip text is created from the value of the DisplayTitle property, followed by a hyphen, followed by the Description property value.

For a code example that uses this property, see the base Description property.

The personalization scope of this property is set to Shared and can be modified only by authorized users. For more information, see PersonalizableAttribute and Web Parts Personalization Overview.

Applies to

See also