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

Provides data for the OnPaneResize event when a user resizes a pane through the splitter handles. Contains information about the pane being resized and its new dimensions.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DockManagerPaneResizeEventArgs

Inheritance: objectDockManagerPaneResizeEventArgs

Constructors

C#
public DockManagerPaneResizeEventArgs()

Properties

Gets or sets the unique identifier of the pane being resized.

C#
public string PaneId { get; set; }

Gets or sets the new size of the pane as a CSS value after the resize operation. Supports units like px, %, em, or rem (e.g., "300px", "40%"). The value reflects the pane's new dimension in the direction of its parent container's orientation.

C#
public string Size { get; set; }