DockWindowCollection
Class
A collection that stores all DockWindow instances available per RadDock basis.
Definition
Namespace:Telerik.WinControls.UI.Docking
Assembly:Telerik.WinControls.RadDock.dll
Syntax:
C#
public class DockWindowCollection : ICollection, IEnumerable
Inheritance: objectDockWindowCollection
Implements:
Properties
Gest the number of DockWindow instances registered with the owning RadDock.
C#
public int Count { get; }
Implements:
Gets all the DocumentWindow instances available. This will not include ToolWindow instances that are currently TabbedDocuments.
C#
public DockWindow[] DocumentWindows { get; }
Gets the DockWindow instance at the specified index.
Gets the DockWindow instances that matches the specified name.
Gets all the ToolWindow instances available.
C#
public DockWindow[] ToolWindows { get; }
Methods
Gets all DockWindow instances that has the specified DockState.
Gets all the DockWindow instances that match the specified predicate.
C#
public DockWindow[] GetWindows(Predicate<DockWindow> predicate)