MVCxPopupWindowCollection.Item[Int32] Property
In This Article
Provides indexed access to individual popup windows within the current collection.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public MVCxPopupWindow this[int index] { get; }
#Parameters
Name | Type | Description |
---|---|---|
index | Int32 | An integer value specifying the zero-based index of the popup window to be accessed. |
#Property Value
Type | Description |
---|---|
MVCx |
A MVCx |
#Remarks
Use this property to access a particular popup window using index notation.
Items in the MVCxPopupWindowCollection are added and removed from the collection using the PopupWindowCollection.Add, MVCxPopupWindowCollection.Insert and Collection<T>.Remove methods.
See Also