Class
DockManagerContentPane

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class DockManagerContentPane : DockManagerPaneBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentDockManagerPaneBaseDockManagerContentPane

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

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

Constructors

DockManagerContentPane()

Declaration

cs-api-definition
public DockManagerContentPane()

Properties

AllowFloat

Specifies whether the pane can be undocked to a floating window. The default value is true.

Declaration

cs-api-definition
[Parameter]
public bool AllowFloat { get; set; }

Property Value

bool

Closeable

Specifies whether the pane can be hidden by clicking the close button. The default value is true.

Declaration

cs-api-definition
[Parameter]
public bool Closeable { get; set; }

Property Value

bool

Content

The content of the pane.

Declaration

cs-api-definition
[Parameter]
public RenderFragment Content { get; set; }

Property Value

RenderFragment

HeaderTemplate

The header content of the pane. If not set, the header text will be displayed in the header.

Declaration

cs-api-definition
[Parameter]
public RenderFragment HeaderTemplate { get; set; }

Property Value

RenderFragment

HeaderText

Sets the pane's header text.

Declaration

cs-api-definition
[Parameter]
public string HeaderText { get; set; }

Property Value

string

Maximizable

Specifies whether the pane can be maximized when floating. The default value is true.

Declaration

cs-api-definition
[Parameter]
public bool Maximizable { get; set; }

Property Value

bool

Unpinnable

Specifies whether the pane can be unpinned and displayed in the side bar of the DockManager. The default value is true.

Declaration

cs-api-definition
[Parameter]
public bool Unpinnable { get; set; }

Property Value

bool

Unpinned

Specifies whether the pane is unpinned and displayed in the side bar of the DockManager.

Declaration

cs-api-definition
[Parameter]
public bool Unpinned { get; set; }

Property Value

bool

UnpinnedChanged

Event that is fired when the unpinned state of the pane is changed. It accepts a boolean argument that indicates whether the pane is unpinned or not.

Declaration

cs-api-definition
[Parameter]
public EventCallback<bool> UnpinnedChanged { get; set; }

Property Value

EventCallback<bool>

UnpinnedSize

Specifies the size (width) of the container when the pane is unpinned.

Declaration

cs-api-definition
[Parameter]
public string UnpinnedSize { get; set; }

Property Value

string

UnpinnedSizeChanged

Event that is fired when the size of the unpinned pane is changed.

Declaration

cs-api-definition
[Parameter]
public EventCallback<string> UnpinnedSizeChanged { get; set; }

Property Value

EventCallback<string>

Methods

BuildRenderTree(RenderTreeBuilder)

Declaration

cs-api-definition
protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder

RenderTreeBuilder

Overrides ComponentBase.BuildRenderTree(RenderTreeBuilder)

OnInitialized()

Declaration

cs-api-definition
protected override void OnInitialized()

Overrides DockManagerPaneBase.OnInitialized()