DetailItem Class
Represents an item 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.DetailItem
Syntax
[SerializableAttribute]
public class DetailItem
[SerializableAttribute]
public ref class DetailItem
<SerializableAttribute>
Public Class DetailItem
Constructors
Name | Description | |
---|---|---|
DetailItem(String) | Initializes a new instance of the DetailItem class with the specified display text. |
|
DetailItem(String, String) | Initializes a new instance of the DetailItem class with the specified display name and the specified display value. |
|
DetailItem(String, String, Task[]) | Initializes a new instance of the DetailItem class with the specified display name, the specified display value, and the specified array of Task objects. |
|
DetailItem(String, Task[]) | Initializes a new instance of the DetailItem class with the specified display text and the specified array of Task objects. |
Properties
Name | Description | |
---|---|---|
DisplayName | Gets the display name that is associated with the DetailItem object. |
|
DisplayValue | Gets the display value that is associated with the DetailItem object. |
|
Enabled | Gets or sets whether the item should be displayed as enabled. |
|
Tasks | An array of tasks to which format specifiers in the display text can be linked. |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
FromException(Exception) | Creates a DetailItem from an Exception. |
|
FromListColumn<TBusinessObject>(ListColumn<TBusinessObject>, TBusinessObject) | Creates a DetailItem object from data that is defined in a specified ListColumn<TBusinessObject> object. |
|
FromListColumn<TBusinessObject>(String, ListColumn<TBusinessObject>, TBusinessObject) | Creates a DetailItem object from data that is defined in a specified ListColumn<TBusinessObject> object and with the specified display name. |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
ToString() | (Inherited from Object.) |
Remarks
A DetailItem can include information from a business object and additional information about a business object that is retrieved from other sources, such as a database or service.
A DetailItem object must be added to a DetailGroup to be displayed in Dashboard. You can explicitly create a DetailItem object and add it to a DetailGroup, or you can create a DetailGroup and a DetailItem object will be implicitly created.
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