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

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public abstract class DockManagerPaneBase : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentDockManagerPaneBase

Derived Classes: DockManagerContentPaneDockManagerSplitPaneDockManagerTabGroupPane

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.OnInitializedAsync()BaseComponent.OnAfterRenderAsync(bool)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.BuildRenderTree(RenderTreeBuilder)ComponentBase.OnParametersSet()ComponentBase.OnParametersSetAsync()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.DispatchExceptionAsync(Exception)ComponentBase.SetParametersAsync(ParameterView)...

Constructors

C#
protected DockManagerPaneBase()

Methods

C#
public override void Dispose()

Overrides: BaseComponent.Dispose()

Implements: IDisposable.Dispose()

C#
protected override void OnInitialized()

Overrides: ComponentBase.OnInitialized()

Properties

Specifies whether the pane allows other panes to be docked to or over it. The default value is true. If set to false, the pane will not render a navigator element that allows docking.

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

The unique identifier of the pane.

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

The size of the pane when it is part of a DockManagerSplitPane.

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

Event that is fired when the size of the pane is changed. The new size is passed as an argument.

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

Determines whether the pane is visible or not.

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

Event that is fired when the visibility of the pane is changed.

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