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

Represents an object that stores information about what was a docking window's previous state.

Definition

Constructors

Initializes a new RedockState for the specified window and desired DockState.

C#
public RedockState(DockWindow window, DockState state)
Parameters:windowDockWindowstateDockState

Properties

Gets the redock state provider.

C#
public DockWindow DockWindow { get; }

Determines whether the state is valid (the information needed for the state to be restored later on is valid).

C#
public virtual bool IsValid { get; }

Gets the recorded size info.

C#
public SplitPanelSizeInfo SizeInfo { get; }

Gets the index of the state provider on the redock target TabStrip.

C#
public int TabIndex { get; }

Gets the redock position this state targets.

C#
public DockState TargetState { get; }

Gets the target strip for the redock operation.

C#
public DockTabStrip TargetStrip { get; }