StatusBar.StatusBarPanelCollection
Wisej.Web.StatusBar StatusBarPanelCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.0.0.0)
Represents the collection of StatusBarPanel controls in a StatusBar control.
Properties
IsReadOnly
Boolean: Returns a value indicating whether this collection is read-only.
Item(index)
StatusBarPanel: Returns or sets the StatusBarPanel at the specified index.
Item(name)
StatusBarPanel: Returns the StatusBarPanel identified by the name.
Methods
Add(text)
Adds a StatusBarPanel with the specified text to the collection.
text
Returns: StatusBarPanel. A StatusBarPanel that represents the panel that was added to the collection.
Add(panel)
Adds a StatusBarPanel to the collection.
panel
Returns: Int32. The zero-based index of the item in the collection.
Throws:
ArgumentNullException The StatusBarPanel being added to the collection was null.
ArgumentException The parent of the StatusBarPanel specified in the panel parameter is not null.
AddRange(panels)
Adds an array of StatusBarPanel to the collection.
panels
Clear()
Removes all panels from the collection.
Clear(dispose)
Removes and optionally disposes all StatusBarPanel objects from the collection.
dispose
Contains(panel)
Determines whether the specified StatusBarPanel is located within the collection.
panel
Returns: Boolean. true if the StatusBarPanel is located within the collection; otherwise, false.
ContainsKey(key)
Determines whether the collection contains a StatusBarPanel with the specified key.
key
The name of the item to find in the collection.
Returns: Boolean. true to indicate the collection contains a StatusBarPanel with the specified key; otherwise, false.
GetEnumerator()
Returns an enumerator to use to iterate through the StatusBarPanel objects in the collection.
Returns: IEnumerator. An IEnumerator that represents the item collection.
IndexOf(panel)
Returns the index within the collection of the specified StatusBarPanel.
panel
Returns: Int32. The zero-based index where the StatusBarPanel is located within the collection; otherwise, negative one (-1).
IndexOfKey(key)
Returns the index of the first occurrence of a StatusBarPanel with the specified key.
key
Returns: Int32. The zero-based index of the first occurrence of the StatusBarPanel with the specified key, if found; otherwise, -1.
Insert(index, panel)
Inserts the specified StatusBarPanel into the collection at the specified index.
index
The zero-based index location where the panel is inserted.
panel
Throws:
ArgumentNullException The panel parameter is null.
ArgumentException The panel parameter's parent is not null.
ArgumentOutOfRangeException The index parameter is less than zero or greater than the value of the Count property of the StatusBarPanelCollection class.
Remove(panel)
Removes the specified StatusBarPanel from the collection.
panel
Throws:
ArgumentNullException The StatusBarPanel assigned to the panel parameter is null.
RemoveAt(index)
Removes the StatusBarPanel located at the specified index within the collection.
index
The zero-based index of the item to remove.
Throws:
ArgumentOutOfRangeException The index parameter is less than zero or greater than or equal to the value of the Count property of the StatusBarPanelCollection class.
RemoveByKey(key)
Removes the StatusBarPanel with the specified key from the collection.
key
Last updated