CatalogPart.DisplayTitle Property

Note: This property is new in the .NET Framework version 2.0.

Gets a string that contains the actual current title of a CatalogPart control.

Namespace: System.Web.UI.WebControls.WebParts
Assembly: System.Web (in system.web.dll)

public:
property String^ DisplayTitle {
	String^ get ();
}
/** @property */
public String get_DisplayTitle ()

public function get DisplayTitle () : String

Property Value

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

The DisplayTitle property returns either the current value of the base Title property or, if the control has no title, a calculated value.

The DisplayTitle property is designed to be a read-only, calculated property to get the actual current value of the displayed title at run time. Therefore, you should not attempt to use this property to set a title for a CatalogPart control. To set a title, use the base Title property.

The following code example demonstrates programmatic use of the DisplayTitle property. In the <script> section of the page, the code accesses the DisplayTitle property of DeclarativeCatalogPart1 that is declared on the page. This code shows only the Web page; for the full code required to run the example, see the CatalogPart class overview.

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.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: