DynamicField.HeaderText 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 or sets the text that is displayed in the header of the data-bound control that contains the DynamicField object.
public:
virtual property System::String ^ HeaderText { System::String ^ get(); void set(System::String ^ value); };
public override string HeaderText { get; set; }
member this.HeaderText : string with get, set
Public Overrides Property HeaderText As String
Property Value
The text that is displayed in the header of the data-bound control that contains the DynamicField object.
Exceptions
The DynamicField object is inside a data-bound control that is not bound to a data source control that implements the IDynamicDataSource interface.
Remarks
Use the HeaderText property to identify a field in a data-bound control with a friendly name. The most common application of the HeaderText property is to provide meaningful column names to data fields in a GridView or DetailsView control.
By default, the HeaderText property uses the display name set for the data field by using the DisplayNameAttribute attribute. If the display name is not set, the HeaderText property uses the value of the DataField property.