Skip to main content
All docs
V26.1
  • AIChatControl.AllowResizeInput Property

    Gets or sets whether users can resize the AI chat input box.

    Namespace: DevExpress.AIIntegration.WinForms.Chat

    Assembly: DevExpress.AIIntegration.WinForms.Chat.v26.1.dll

    NuGet Package: DevExpress.AIIntegration.WinForms.Chat

    Declaration

    [DefaultValue(DefaultBoolean.Default)]
    public DefaultBoolean AllowResizeInput { get; set; }

    Property Value

    Type Default Description
    DefaultBoolean Default

    DefaultBoolean.True to allow users to resize the chat input box; otherwise, DefaultBoolean.False.

    Available values:

    Name Description Return Value
    True

    The value is true.

    0

    False

    The value is false.

    1

    Default

    The value is specified by a global option or a higher-level object.

    2

    Remarks

    Set the AllowResizeInput property to DefaultBoolean.True to allow users to resize the chat input box. Users can drag the top edge up to create more typing space, or drag it down to display more chat history.

    Example

    The following example allows users to resize the chat input box:

    aiChatControl1.AllowResizeInput = DevExpress.Utils.DefaultBoolean.True;
    

    Resize Chat Input Box - WinForms AI Chat Control, DevExpress

    Refer to the following help topic for additional information: AI Chat Control

    See Also