GridAISettings
Provides configuration settings for the AI prompt panel in the DataGrid.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridAISettings : INotifyPropertyChanged
Inheritance: objectGridAISettings
Implements:
Constructors
Initializes a new instance of the GridAISettings class.
public GridAISettings()
Properties
Gets or sets a value indicating whether the busy indicator is enabled during prompt processing.
public bool EnableIsBusy { get; set; }
Gets or sets the color used to highlight rows identified by an AI command.
public Color HighlightColor { get; set; }
Gets or sets a value indicating whether the recent prompts section is visible.
public bool IsRecentPromptsVisible { get; set; }
Gets or sets a value indicating whether the suggested prompts section is visible.
public bool IsSuggestedPromptsVisible { get; set; }
Gets or sets a value indicating whether the prompt input opens when it receives focus.
public bool OpenPromptSuggestionsOnFocus { get; set; }
RecentPrompts
IEnumerable<string>
Gets or sets the collection of recent prompts.
public IEnumerable<string> RecentPrompts { get; set; }
Gets or sets a value indicating whether selecting a prompt should automatically submit the request.
public bool SubmitPromptOnSelection { get; set; }
SuggestedPrompts
IEnumerable<string>
Gets or sets the collection of suggested prompts.
public IEnumerable<string> SuggestedPrompts { get; set; }
Gets or sets the watermark (placeholder) content displayed in the prompt input when it is empty.
public object WatermarkContent { get; set; }
Methods
Raises the PropertyChanged event.
protected virtual void OnPropertyChanged(string propertyName = "")
The name of the changed property.
Events
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: