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

GridControl.DefaultView Property

Gets the currently maximized View.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[Browsable(false)]
public BaseView DefaultView { get; }

Property Value

Type Description
BaseView

A BaseView descendant representing the currently maximized detail clone.

Remarks

The grid control enables you to maximize detail clones so that they are displayed as the main View. In this case, you can determine the currently maximized clone by reading the DefaultView property value. When no detail clone is maximized, the DefaultView property value matches the GridControl.MainView property value.

Please refer to the Master-Detail Relationships topic for details on maximizing detail clones.

Note: when the DefaultView property value changes, the GridControl.DefaultViewChanged event is raised.

Example

The example below shows how to maximize a detail View.

If the detail View does not exist, we should create it by expanding a specific master row. In our case, we obtain and work with the detail corresponding to the first master row.

After the master row is expanded, the detail View is obtained via GridView.GetDetailView.

Then the detail is maximized using the BaseView.ZoomView method. After that, the detail object and the GridControl.DefaultView property refer to the same maximized detail.

We use GridControl.DefaultView to group detail data rows by the “FUNCTION” column.

    int rowHandle = 0;
    //Create the first detail by expanding a master row
    GridView gView = gridControl1.MainView as GridView;
    gView.SetMasterRowExpanded(rowHandle, true);
    //Get the first detail
    BaseView detail = gView.GetDetailView(rowHandle);
    if (detail != null) {
        detail.ZoomView();
        //Access the detail via DefaultView
        //Group by the FUNCTION column
        (gridControl1.DefaultView as GridView).Columns["FUNCTION"].GroupIndex = 0;
    }

The following code snippets (auto-collected from DevExpress Examples) contain references to the DefaultView property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also