DetailColumn Class
Represents a column 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.DetailColumn
Syntax
[SerializableAttribute]
public sealed class DetailColumn : ICollection<DetailGroup>,
IEnumerable<DetailGroup>, IEnumerable
[SerializableAttribute]
public ref class DetailColumn sealed : ICollection<DetailGroup^>,
IEnumerable<DetailGroup^>, IEnumerable
<SerializableAttribute>
Public NotInheritable Class DetailColumn
Implements ICollection(Of DetailGroup), IEnumerable(Of DetailGroup),
IEnumerable
Constructors
Name | Description | |
---|---|---|
DetailColumn() | Initializes a new instance of the DetailColumn class. |
Properties
Name | Description | |
---|---|---|
Count | Gets the number of DetailGroup objects in the DetailColumn. |
|
IsReadOnly | Gets a value indicating whether the DetailColumn is read-only. |
Methods
Name | Description | |
---|---|---|
Add(DetailGroup) | Adds the specified DetailGroup object to the DetailColumn. |
|
Add(String) | Initializes a DetailGroup object with the specified display name and adds the group to the DetailColumn. |
|
Clear() | Removes all DetailGroup objects from the DetailColumn. |
|
Contains(DetailGroup) | Determines whether the specified DetailGroup object is located in the DetailColumn. |
|
CopyTo(DetailGroup[], Int32) | Copies the entire DetailColumn to a compatible one-dimensional array, starting at the specified index of the target array. |
|
Equals(Object) | (Inherited from Object.) |
|
GetEnumerator() | Returns an enumerator that is used to iterate through the DetailColumn. |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
Remove(DetailGroup) | Removes the first occurrence of the specified DetailGroup from the DetailColumn. |
|
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
IEnumerable.GetEnumerator() | Returns an IEnumerator that can iterate through a collection. |
Remarks
A DetailColumn must be added to a DetailColumnCollection to be displayed in the detail pane of the Dashboard.
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