Skip to main content
.NET 6.0+

ControlDetailItem(String, String, Object) Constructor

Creates and initializes a new instance of the ControlDetailItem class.

Namespace: DevExpress.ExpressApp.Layout

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public ControlDetailItem(
    string id,
    string caption,
    object control
)

Parameters

Name Type Description
id String

A string value representing the current View Item’s identifier. This value is assigned to the ViewItem.Id property.

caption String

A string value representing the current View Item’s caption. This value is assigned to the ViewItem.Caption property.

control Object

A control that will be displayed in a UI by the current View Item.

Remarks

Since instantiation of View Items is managed automatically by XAF, you do not need to use this constructor.

See Also