Share via


DetailGroup Constructor

Initializes a new instance of the DetailGroup class with the specified display name.

Namespace: Microsoft.EssentialBusinessServer.Console.ObjectModel
Assembly: Microsoft.EssentialBusinessServer.Console.ObjectModel (in microsoft.essentialbusinessserver.console.objectmodel.dll)

Usage

Syntax

'Declaration
Public Sub New ( _
    displayName As String _
)
public DetailGroup (
    string displayName
)
public:
DetailGroup (
    String^ displayName
)
public DetailGroup (
    String displayName
)
public function DetailGroup (
    displayName : String
)

Parameters

  • displayName
    A display name for the group.

Example

The following code example shows how to initialize a DetailColumn and a DetailGroup, and add the group to the column:

DetailColumn column = new DetailColumn();
DetailGroup group = new DetailGroup("Computer Information");
column.Add(group);

Exceptions

Exception type Condition
ArgumentException

displayName is not valid.

ArgumentNullException

displayName is null.

Platforms

Development Platforms

Windows Server 2008 64-bit Edition, Windows Vista 64-bit Edition, Windows Essential Business Server 2008 Standard, Windows Essential Business Server 2008 Premium

Target Platforms

Windows Essential Business Server 2008 Standard, Windows Essential Business Server 2008 Premium

See Also

Reference

DetailGroup Class
DetailGroup Members
Microsoft.EssentialBusinessServer.Console.ObjectModel Namespace