Share via


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
System_CAPS_pubmethod DetailItem(String)

Initializes a new instance of the DetailItem class with the specified display text.

System_CAPS_pubmethod DetailItem(String, String)

Initializes a new instance of the DetailItem class with the specified display name and the specified display value.

System_CAPS_pubmethod 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.

System_CAPS_pubmethod 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
System_CAPS_pubproperty DisplayName

Gets the display name that is associated with the DetailItem object.

System_CAPS_pubproperty DisplayValue

Gets the display value that is associated with the DetailItem object.

System_CAPS_pubproperty Enabled

Gets or sets whether the item should be displayed as enabled.

System_CAPS_pubproperty Tasks

An array of tasks to which format specifiers in the display text can be linked.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_static FromException(Exception)

Creates a DetailItem from an Exception.

System_CAPS_pubmethodSystem_CAPS_static FromListColumn<TBusinessObject>(ListColumn<TBusinessObject>, TBusinessObject)

Creates a DetailItem object from data that is defined in a specified ListColumn<TBusinessObject> object.

System_CAPS_pubmethodSystem_CAPS_static 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.

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod 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