Skip to main content

XtraMdiTabPage(IXtraTab, Form, Boolean) Constructor

Initializes a new instance of the XtraMdiTabPage class with the specified settings.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public XtraMdiTabPage(
    IXtraTab tabControl,
    Form mdiChild,
    bool useFormIconAsImage
)

Parameters

Name Type Description
tabControl DevExpress.XtraTab.IXtraTab

An object which implements the DevExpress.XtraTab.IXtraTab interface and owns the created tab page. This value is assigned to the XtraMdiTabPage.TabControl property.

mdiChild Form

A Form object which represents the MDI child form to which the created tab page corresponds. This value is assigned to the XtraMdiTabPage.MdiChild property.

useFormIconAsImage Boolean

A Boolean value that specifies whether to display a child form’s icon (Form.Icon) in the corresponding page header. This value is assigned to the XtraTabbedMdiManager.UseFormIconAsPageImage property.

See Also