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