DesignerActionListCollection.Remove(DesignerActionList) 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 first occurrence of a specific DesignerActionList from the collection.
public:
void Remove(System::ComponentModel::Design::DesignerActionList ^ value);
public void Remove (System.ComponentModel.Design.DesignerActionList value);
public void Remove (System.ComponentModel.Design.DesignerActionList? value);
member this.Remove : System.ComponentModel.Design.DesignerActionList -> unit
Public Sub Remove (value As DesignerActionList)
Parameters
- value
- DesignerActionList
The DesignerActionList to remove from the current collection.
Remarks
Internally, the DesignerActionListCollection class uses a System.Collections.ArrayList to contain its collection of DesignerActionList objects. Since lists maintain contiguous elements, the elements that follow the removal point move up to occupy the vacated spot. This rearrangement changes the index of the elements after the removal point.