New to Telerik UI for WPFStart a free 30-day trial

Provides configuration settings for the AI prompt panel in the DataGrid. This class controls the UI aspects of the prompt input experience.

Definition

Namespace:Telerik.Windows.Controls.GridView.AIFeatures

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class GridViewAISettings : Freezable

Inheritance: objectGridViewAISettings

Constructors

Initializes a new instance of the GridViewAISettings class.

C#
public GridViewAISettings()

Fields

EnableIsBusyProperty

DependencyProperty

Identifies the EnableIsBusy property.

C#
public static readonly DependencyProperty EnableIsBusyProperty

InputTextProperty

DependencyProperty

Identifies the InputText property.

C#
public static readonly DependencyProperty InputTextProperty

Identifies the IsRecentPromptsVisible property.

C#
public static readonly DependencyProperty IsRecentPromptsVisibleProperty

Identifies the IsSuggestedPromptsVisible property.

C#
public static readonly DependencyProperty IsSuggestedPromptsVisibleProperty

Identifies the OpenPromptSuggestionsOnFocus property.

C#
public static readonly DependencyProperty OpenPromptSuggestionsOnFocusProperty

RecentPromptsProperty

DependencyProperty

Identifies the RecentPrompts property.

C#
public static readonly DependencyProperty RecentPromptsProperty

Identifies the SubmitPromptOnSelection property.

C#
public static readonly DependencyProperty SubmitPromptOnSelectionProperty

SuggestedPromptsProperty

DependencyProperty

Identifies the SuggestedPrompts property.

C#
public static readonly DependencyProperty SuggestedPromptsProperty

WatermarkContentProperty

DependencyProperty

Identifies the WatermarkContent property.

C#
public static readonly DependencyProperty WatermarkContentProperty

Properties

Gets or sets a value indicating whether the busy indicator is enabled during prompt processing.

C#
public bool EnableIsBusy { get; set; }

Gets or sets the text of the input field.

C#
public string InputText { get; set; }

Gets or sets a value indicating whether the recent prompts section is visible.

C#
public bool IsRecentPromptsVisible { get; set; }

Gets or sets a value indicating whether the suggested prompts section is visible.

C#
public bool IsSuggestedPromptsVisible { get; set; }

Gets or sets a value indicating whether the prompt input opens when it receives focus.

C#
public bool OpenPromptSuggestionsOnFocus { get; set; }

Gets or sets the collection of recent prompts.

C#
public IEnumerable<string> RecentPrompts { get; set; }

Gets or sets a value indicating whether selecting a prompt should automatically submit the request. When true, selecting a prompt closes the popup and invokes the PromptRequest event on the parent DataGrid. When false, the selected prompt is placed in the input and the user must manually submit.

C#
public bool SubmitPromptOnSelection { get; set; }

Gets or sets the collection of suggested prompts.

C#
public IEnumerable<string> SuggestedPrompts { get; set; }

Gets or sets the watermark (placeholder) content displayed in the prompt input when it is empty.

C#
public object WatermarkContent { get; set; }

Methods

C#
protected override Freezable CreateInstanceCore()
Returns:

Freezable