DxAIChat.AllowResizeInput Property
Specifies whether users can resize the AI chat input box.
Namespace: DevExpress.AIIntegration.Blazor.Chat
Assembly: DevExpress.AIIntegration.Blazor.Chat.v25.2.dll
NuGet Package: DevExpress.AIIntegration.Blazor.Chat
Declaration
[Parameter]
public bool AllowResizeInput { get; set; }
Property Value
| Type | Description |
|---|---|
| Boolean |
|
Remarks
Set the AllowResizeInput property to true to allow users to resize the chat input box. Drag the top edge up to create more typing space, or drag it down to display more chat history.
<style>
.my-ai-chat {
width: 100%;
height: 400px;
}
</style>
<DxAIChat
CssClass="my-ai-chat"
AllowResizeInput="true" />

See Also