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

ReportDesigner.PropertyGridOptions Property

Provides access to options of the End-User Report Designer’s Properties Panel.

Namespace: DevExpress.Xpf.Reports.UserDesigner

Assembly: DevExpress.Xpf.ReportDesigner.v18.2.dll

Declaration

public PropertyGridOptions PropertyGridOptions { get; set; }

Property Value

Type Description
PropertyGridOptions

An object that specifies the Properties panel’s options.

Remarks

The PropertyGridOptions property provides access to the following settings:

<Window Title="MainWindow" Height="350" Width="525"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:dxrud="http://schemas.devexpress.com/winfx/2008/xaml/reports/userdesigner" >
    <dxrud:ReportDesigner PropertyGridOptions="{dxrud:PropertyGridOptions ShowFavoriteProperties=True UseOfficeInspiredPropertyGrid=True}"/>
</Window>

See the Properties Panel topic for more information.

See Also