Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

class System.​ComponentModel.​Design.​DesignerVerbCollection

Assembly: System.ComponentModel.TypeConverter

Inheritance: object → Collections.​CollectionBase → DesignerVerbCollection

Implemented Interfaces

Represents a collection of <see cref="T:System.ComponentModel.Design.DesignerVerb" /> objects.

Properties

public DesignerVerb
Item
public int
Capacity
public int
Count
InnerList
List

Methods

public int
Add​(DesignerVerb value)
Adds the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to the collection.
Returns The index in the collection at which the verb was added.
value The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to add to the collection.
public void
AddRange​(DesignerVerbCollection value)
Adds the specified collection of designer verbs to the collection.
value A <see cref="T:System.ComponentModel.Design.DesignerVerbCollection" /> to add to the collection.
public void
AddRange​(DesignerVerb[] value)
Adds the specified set of designer verbs to the collection.
value An array of <see cref="T:System.ComponentModel.Design.DesignerVerb" /> objects to add to the collection.
public bool
Contains​(DesignerVerb value)
Gets a value indicating whether the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> exists in the collection.
Returns <see langword="true" /> if the specified object exists in the collection; otherwise, <see langword="false" /> .
value The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to search for in the collection.
public void
CopyTo​(DesignerVerb[] array, int index)
Copies the collection members to the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> array beginning at the specified destination index.
array The array to copy collection members to.
index The destination index to begin copying to.
public int
IndexOf​(DesignerVerb value)
Gets the index of the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> .
Returns The index of the specified object if it is found in the list; otherwise, -1.
value The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> whose index to get in the collection.
public void
Insert​(int index, DesignerVerb value)
Inserts the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> at the specified index.
index The index in the collection at which to insert the verb.
value The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to insert in the collection.
protected void
OnValidate​(object value)
Raises the <see langword="Validate" /> event.
value The object to validate.
public void
Remove​(DesignerVerb value)
Removes the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> from the collection.
value The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to remove from the collection.
public void
Clear​()
GetEnumerator​()
protected void
OnClear​()
protected void
OnClearComplete​()
protected void
OnInsert​(int index, object value)
protected void
OnInsertComplete​(int index, object value)
protected void
OnRemove​(int index, object value)
protected void
OnRemoveComplete​(int index, object value)
protected void
OnSet​(int index, object oldValue, object newValue)
protected void
OnSetComplete​(int index, object oldValue, object newValue)
public void
RemoveAt​(int index)
public bool
Equals​(object obj)
Inherited from object
protected void
Finalize​()
Inherited from object
public int
GetHashCode​()
Inherited from object
public Type
GetType​()
Inherited from object
protected object
MemberwiseClone​()
Inherited from object
public string
ToString​()
Inherited from object