EditorPart.DisplayTitle Property
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.
Gets a string that contains the title text displayed in the title bar of an EditorPart control.
public:
property System::String ^ DisplayTitle { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string DisplayTitle { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DisplayTitle : string
Public ReadOnly Property DisplayTitle As String
Property Value
A string that represents the complete, visible title of the control. The default value is a calculated, culture-specific string supplied by the .NET Framework.
- Attributes
Remarks
The DisplayTitle property returns either the current value of the base Title property or, if the control has no title, a calculated value. The calculated value consists of a localizable resource string for untitled controls. In the cases where no value is assigned to the Title property, the value of the DisplayTitle property differs from the Title property.
Because 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, do not attempt to use this property to set a title for an EditorPart control. To set a title, use the base Title property.