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

    Gets or sets the prompt text displayed in the AI Chat input box when it is empty.

    Namespace: DevExpress.AIIntegration.WinForms.Chat

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

    NuGet Package: DevExpress.AIIntegration.WinForms.Chat

    Declaration

    [DefaultValue(null)]
    public string InputBoxNullText { get; set; }

    Property Value

    Type Default Description
    String null

    The prompt text.

    Remarks

    Use the InputBoxNullText property to display the prompt text in the AI Chat input box when it is empty.

    If you do not specify this property, the control uses the AIChat_InputPlaceholder localization string as the prompt text.

    Example

    The following example specifies the prompt text displayed in the empty input box:

    aiChatControl1.InputBoxNullText = "Ask me anything...";
    

    Input Box Prompt Text - WinForms AI Chat Control, DevExpress

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

    See Also