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

Specifies settings.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class GridToolBarAIAssistantToolWindowSettings : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentGridToolBarAIAssistantToolWindowSettings

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.OnAfterRenderAsync(bool)BaseComponent.Dispose()BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeVoidAsyncWithoutAwait(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.OnInitialized()ComponentBase.OnParametersSet()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.DispatchExceptionAsync(Exception)...

Constructors

C#
public GridToolBarAIAssistantToolWindowSettings()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override Task OnInitializedAsync()
Returns:

Task

Overrides: BaseComponent.OnInitializedAsync()

C#
protected override Task OnParametersSetAsync()
Returns:

Task

Overrides: ComponentBase.OnParametersSetAsync()

C#
public override Task SetParametersAsync(ParameterView parameters)
Parameters:parametersParameterViewReturns:

Task

Overrides: ComponentBase.SetParametersAsync(ParameterView)

Properties

Defines if the window should be draggable through the titlebar. The default value is true.

C#
[Parameter]
public bool Draggable { get; set; }

Defines the height of the Window as a CSS value.

C#
[Parameter]
public string Height { get; set; }

Fires when the height parameter has changed.

C#
[Parameter]
public EventCallback<string> HeightChanged { get; set; }

The id of the window HTML element.

C#
[Parameter]
public string Id { get; set; }

Defines the max height of the Window as a CSS value.

C#
[Parameter]
public string MaxHeight { get; set; }

Defines the max width of the Window as a CSS value.

C#
[Parameter]
public string MaxWidth { get; set; }

Defines the min height of the Window as a CSS value.

C#
[Parameter]
public string MinHeight { get; set; }

Defines the min width of the Window as a CSS value.

C#
[Parameter]
public string MinWidth { get; set; }

Defines if the window should be resizable. The default value is true.

C#
[Parameter]
public bool Resizable { get; set; }

Defines whether the Window is rendered. Can define initial visibility and toggle visibility at runtime. The default value is false.

C#
[Parameter]
public bool Visible { get; set; }

Fires when the Visible Parameter has changed.

C#
[Parameter]
public EventCallback<bool> VisibleChanged { get; set; }

Defines the width of the Window as a CSS value.

C#
[Parameter]
public string Width { get; set; }

Fires when the width parameter has changed.

C#
[Parameter]
public EventCallback<string> WidthChanged { get; set; }