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 | |
---|---|---|
DetailColumnCollection() | Initializes a new instance of the DetailColumnCollection class. |
Properties
Name | Description | |
---|---|---|
Count | Gets the number of DetailColumn objects in the DetailColumnCollection. |
|
IsReadOnly | Gets a value that indicates whether the DetailColumnCollection is read-only. |
Methods
Name | Description | |
---|---|---|
Add() | Initializes a DetailColumn object and adds the object to the DetailColumnCollection. |
|
Add(DetailColumn) | Adds the specified DetailColumn object to the DetailColumnCollection. |
|
Clear() | Removes all DetailColumn objects from the DetailColumnCollection. |
|
Contains(DetailColumn) | Determines whether the specified DetailColumn object is located in the DetailColumnCollection. |
|
CopyTo(DetailColumn[], Int32) | Copies the entire DetailColumnCollection to a compatible one-dimensional array, starting at the specified index of the target array. |
|
Equals(Object) | (Inherited from Object.) |
|
FromException(String, Exception) | Creates a DetailColumnCollection from an Exception. |
|
GetEnumerator() | Returns an enumerator that is used to iterate through the DetailColumnCollection. |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
Remove(DetailColumn) | Removes the first occurrence of the specified DetailColumn object from the DetailColumnCollection. |
|
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
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