Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents a group of data 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.DetailGroup
Syntax
[SerializableAttribute]
public sealed class DetailGroup : ICollection<DetailItem>, IEnumerable<DetailItem>, 
    IEnumerable
[SerializableAttribute]
public ref class DetailGroup sealed : ICollection<DetailItem^>, 
    IEnumerable<DetailItem^>, IEnumerable
<SerializableAttribute>
Public NotInheritable Class DetailGroup
    Implements ICollection(Of DetailItem), IEnumerable(Of DetailItem),
    IEnumerable
Constructors
| Name | Description | |
|---|---|---|
| .jpeg) | DetailGroup(String) | Initializes a new instance of the DetailGroup class with the specified display name. | 
Properties
| Name | Description | |
|---|---|---|
| .jpeg) | Count | Gets the number of DetailItem objects in the DetailGroup. | 
| .jpeg) | DisplayName | Gets the display name for the group. | 
| .jpeg) | IsReadOnly | Gets a value indicating whether the DetailGroup is read-only. | 
Methods
| Name | Description | |
|---|---|---|
| .jpeg) | Add(DetailItem) | Adds the specified DetailItem object to the DetailGroup. | 
| .jpeg) | Add(String) | Initializes a DetailItem object with the specified display text and adds the item to the DetailGroup. | 
| .jpeg) | Add(String, String) | Initializes a DetailItem object with the specified display name and the specified display value, and then adds the object to the DetailGroup. | 
| .jpeg) | Add<TBusinessObject>(ListColumn<TBusinessObject>, TBusinessObject) | Initializes a DetailItem object with the specified ListColumn<TBusinessObject> object and the specified business object, and then adds the object to the DetailGroup. | 
| .jpeg) | Add<TBusinessObject>(String, ListColumn<TBusinessObject>, TBusinessObject) | Initializes a DetailItem object with the specified display name, the specified ListColumn<TBusinessObject> object, and the specified business object. After the DetailItem is initialized, the item is added to the DetailGroup. | 
| .jpeg) | Clear() | Removes all DetailItem objects from the DetailGroup. | 
| .jpeg) | Contains(DetailItem) | Determines whether the specified DetailItem object is located in the DetailGroup. | 
| .jpeg) | CopyTo(DetailItem[], Int32) | Copies the entire DetailGroup to a compatible one-dimensional array, starting at the specified index of the target array. | 
| .jpeg) | Equals(Object) | (Inherited from Object.) | 
| .jpeg) .jpeg) | FromException(String, Exception) | Creates a DetailGroup from an Exception. | 
| .jpeg) | GetEnumerator() | Returns an enumerator that is used to iterate through the DetailGroup. | 
| .jpeg) | GetHashCode() | (Inherited from Object.) | 
| .jpeg) | GetType() | (Inherited from Object.) | 
| .jpeg) | Remove(DetailItem) | Removes the first occurrence of the specified DetailItem from the DetailGroup. | 
| .jpeg) | ToString() | (Inherited from Object.) | 
Explicit Interface Implementations
| Name | Description | |
|---|---|---|
| .jpeg) .jpeg) | IEnumerable.GetEnumerator() | Returns an IEnumerator that can iterate through a collection. | 
Remarks
A DetailGroup must be added to a DetailColumn to be displayed in the details 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
DetailColumn
DetailColumnCollection
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top