AIChatControl.HeaderText Property
Gets or sets the text displayed in the AI Chat header.
Namespace: DevExpress.AIIntegration.WinForms.Chat
Assembly: DevExpress.AIIntegration.WinForms.Chat.v26.1.dll
NuGet Package: DevExpress.AIIntegration.WinForms.Chat
Declaration
Property Value
| Type | Default | Description |
|---|---|---|
| String | null | The header text. |
Remarks
The AIChatControl can display a header that contains a customizable chat title and the Clear Chat button. The button removes all messages from the conversation history except system messages.

Use the ShowHeader property to display the chat header. The HeaderText property specifies the chat title.
Example
The following example displays the chat header with a custom title:
aiChatControl1.ShowHeader = DevExpress.Utils.DefaultBoolean.True;
aiChatControl1.HeaderText = "AI Assistant";
Refer to the following help topic for additional information: AI Chat Control
See Also