StatusBar.StatusBarPanelCollection.RemoveAt(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the StatusBarPanel located at the specified index within the collection.
public:
virtual void RemoveAt(int index);
public virtual void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Overridable Sub RemoveAt (index As Integer)
Parameters
- index
- Int32
The zero-based index of the item to remove.
Implements
Exceptions
The index
parameter is less than zero or greater than or equal to the value of the Count property of the StatusBar.StatusBarPanelCollection class.
Remarks
When you remove a panel from the collection, the indexes change for subsequent panels in the collection. All information about the removed panel is deleted. You can use this method to remove a specific panel from the list by specifying the index of the panel to remove from the collection. To specify the panel to remove instead of the index to the panel, use the Remove method. To remove all panels from the StatusBar control, use the Clear method.