Share via


DetailColumnCollection Class

 

Represents a collection of DetailColumn objects that are displayed in the details pane of the Dashboard.

Namespace:   Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly:  Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)

Inheritance Hierarchy

System.Object
  Microsoft.WindowsServerSolutions.Administration.ObjectModel.DetailColumnCollection

Syntax

[SerializableAttribute]
public sealed class DetailColumnCollection : ICollection<DetailColumn>, 
    IEnumerable<DetailColumn>, IEnumerable
[SerializableAttribute]
public ref class DetailColumnCollection sealed : ICollection<DetailColumn^>, 
    IEnumerable<DetailColumn^>, IEnumerable
<SerializableAttribute>
Public NotInheritable Class DetailColumnCollection
    Implements ICollection(Of DetailColumn), IEnumerable(Of DetailColumn),
    IEnumerable

Constructors

Name Description
System_CAPS_pubmethod DetailColumnCollection()

Initializes a new instance of the DetailColumnCollection class.

Properties

Name Description
System_CAPS_pubproperty Count

Gets the number of DetailColumn objects in the DetailColumnCollection.

System_CAPS_pubproperty IsReadOnly

Gets a value that indicates whether the DetailColumnCollection is read-only.

Methods

Name Description
System_CAPS_pubmethod Add()

Initializes a DetailColumn object and adds the object to the DetailColumnCollection.

System_CAPS_pubmethod Add(DetailColumn)

Adds the specified DetailColumn object to the DetailColumnCollection.

System_CAPS_pubmethod Clear()

Removes all DetailColumn objects from the DetailColumnCollection.

System_CAPS_pubmethod Contains(DetailColumn)

Determines whether the specified DetailColumn object is located in the DetailColumnCollection.

System_CAPS_pubmethod CopyTo(DetailColumn[], Int32)

Copies the entire DetailColumnCollection to a compatible one-dimensional array, starting at the specified index of the target array.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_static FromException(String, Exception)

Creates a DetailColumnCollection from an Exception.

System_CAPS_pubmethod GetEnumerator()

Returns an enumerator that is used to iterate through the DetailColumnCollection.

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod Remove(DetailColumn)

Removes the first occurrence of the specified DetailColumn object from the DetailColumnCollection.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod IEnumerable.GetEnumerator()

Returns an IEnumerator that can iterate through a collection.

Remarks

A DetailColumnCollection can be passed as an argument to one of the Create methods of PageContent.

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.WindowsServerSolutions.Administration.ObjectModel Namespace

Return to top