ActionsPaneItemCollection Class

 

This is a sealed class that represents a collection of ActionsPaneItem objects.

Namespace:   Microsoft.ManagementConsole
Assembly:  Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)

Inheritance Hierarchy

System.Object
  System.Collections.CollectionBase
    Microsoft.ManagementConsole.BaseCollection
      Microsoft.ManagementConsole.ActionsPaneItemCollection

Syntax

public sealed class ActionsPaneItemCollection : BaseCollection
public ref class ActionsPaneItemCollection sealed : BaseCollection
[<Sealed>]
type ActionsPaneItemCollection = 
    class
        inherit BaseCollection
    end
Public NotInheritable Class ActionsPaneItemCollection
    Inherits BaseCollection

Constructors

Name Description
System_CAPS_pubmethod ActionsPaneItemCollection()

Initializes a new instance of the ActionsPaneItemCollection class.

Properties

Name Description
System_CAPS_pubproperty Capacity

(Inherited from CollectionBase.)

System_CAPS_pubproperty Count

(Inherited from CollectionBase.)

System_CAPS_pubproperty Item[Int32]

Gets or sets the ActionsPaneItem object at the specified index.

System_CAPS_pubproperty SyncRoot

Gets an object that can be used to synchronize access to the collection. (Inherited from BaseCollection.)

Methods

Name Description
System_CAPS_pubmethod Add(ActionsPaneItem)

Adds an ActionsPaneItem object to the end of the collection.

System_CAPS_pubmethod AddRange(ActionsPaneItem[])

Adds an array of ActionsPaneItem objects to the end of the collection.

System_CAPS_pubmethod Clear()

(Inherited from CollectionBase.)

System_CAPS_pubmethod Contains(ActionsPaneItem)

Determines whether a specific ActionsPaneItem object is in the collection.

System_CAPS_pubmethod Contains(Object)

Determines whether an item is in the collection. (Inherited from BaseCollection.)

System_CAPS_pubmethod CopyTo(ActionsPaneItem[], Int32)

Copies the contents of the collection to an ActionsPaneItem array, starting at a specified array index.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod GetEnumerator()

(Inherited from CollectionBase.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod IndexOf(ActionsPaneItem)

Determines the index of a specific ActionsPaneItem object in the collection.

System_CAPS_pubmethod Insert(Int32, ActionsPaneItem)

Inserts an ActionsPaneItem object into the collection.

System_CAPS_pubmethod InsertRange(Int32, ActionsPaneItem[])

Inserts an array of ActionsPaneItem objects into the collection at the specified index.

System_CAPS_pubmethod Remove(ActionsPaneItem)

Removes the first occurrence of a specific ActionsPaneItem object from the collection.

System_CAPS_pubmethod RemoveAt(Int32)

(Inherited from CollectionBase.)

System_CAPS_pubmethod ToArray()

Copies the entire contents of the collection to a new array of ActionsPaneItem objects.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod ICollection.CopyTo(Array, Int32)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Add(Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Contains(Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.IndexOf(Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Insert(Int32, Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Remove(Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty ICollection.IsSynchronized

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty ICollection.SyncRoot

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty IList.IsFixedSize

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty IList.IsReadOnly

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty IList.Item[Int32]

(Inherited from CollectionBase.)

Thread Safety

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.ManagementConsole Namespace

Return to top