Skip to main content
A newer version of this page is available. .

IMDIController.Maximize(BaseLayoutItem) Method

Maximizes the document.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v19.2.dll

Declaration

bool Maximize(
    BaseLayoutItem document
)

Parameters

Name Type Description
document BaseLayoutItem

The BaseLayoutItem object that should be maximized.

Returns

Type Description
Boolean

true, if the document is maximized; otherwise, false.

Remarks

The following code sample maximizes the Panel1 DocumentPanel:

<Window ...
  xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking">
  <dxdo:DockLayoutManager x:Name="DockLayoutManager1" >
    <dxdo:LayoutGroup>
      <dxdo:DocumentGroup MDIStyle="MDI">
        <dxdo:DocumentPanel x:Name="Panel1"/>
        <dxdo:DocumentPanel x:Name="Panel2"/>
      </dxdo:DocumentGroup>
    </dxdo:LayoutGroup>
  </dxdo:DockLayoutManager>
</Window>
DockLayoutManager1.MDIController.Maximize(Panel1);
See Also