Back to Devexpress

ForbiddenZoneCollection Class

aspnet-devexpress-dot-web-fa226568.md

latest3.8 KB
Original Source

ForbiddenZoneCollection Class

A collection of zones disallowed from collection owner panel docking.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class ForbiddenZoneCollection :
    Collection<ForbiddenZoneItem>,
    ICollection<ASPxDockZone>,
    IEnumerable<ASPxDockZone>,
    IEnumerable
vb
Public Class ForbiddenZoneCollection
    Inherits Collection(Of ForbiddenZoneItem)
    Implements ICollection(Of ASPxDockZone),
               IEnumerable(Of ASPxDockZone),
               IEnumerable

The following members return ForbiddenZoneCollection objects:

Remarks

Each ASPxDockPanel control allows you to specify zones where the particular panel cannot be docked. Within ASPxDockPanel control, the zones are denoted by ForbiddenZoneItem objects, held within a collection, which is an instance of the ForbiddenZoneCollection class, and can be accessed via the ASPxDockPanel.ForbiddenZones property. The properties and methods exposed by the ForbiddenZoneCollection class can be used to perform collection operations, such as adding new or deleting the existing items. Individual zone item can be accessed using indexer notation.

Implements

IList

ICollection

IStateManager

DevExpress.Utils.IAssignableCollection

IList<ForbiddenZoneItem>

ICollection<ForbiddenZoneItem>

IEnumerable<ForbiddenZoneItem>

ICollection<ASPxDockZone>

IEnumerable<ASPxDockZone>

IEnumerable

Inheritance

Object StateManagedCollectionBase Collection Collection<ForbiddenZoneItem> ForbiddenZoneCollection MVCxForbiddenZoneCollection

See Also

ForbiddenZoneCollection Members

Docking

ForbiddenZones

ForbiddenZoneItem

Online Demo: Docking - Forbidden Zones

DevExpress.Web Namespace