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

PropertyGridOptions.ShowFavoriteProperties Property

Specifies whether the End-User Report Designer’s Properties Panel should display the favorite property list by default.

Namespace: DevExpress.Xpf.Reports.UserDesigner

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

Declaration

public bool ShowFavoriteProperties { get; set; }

Property Value

Type Description
Boolean

true, to display favorite properties by default; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowFavoriteProperties
ReportDesigner
.PropertyGridOptions.ShowFavoriteProperties

Remarks

End-users can select the Favorite view option in the Properties panel to see only their favorite or most frequently used properties instead of the whole set of properties that a selected report element supports.

Enable the ShowFavoriteProperties property to display the favorite list in the Properties panel by default.

<Window ...
        xmlns:dxrud="http://schemas.devexpress.com/winfx/2008/xaml/reports/userdesigner">

    <dxrud:ReportDesigner PropertyGridOptions="{dxrud:PropertyGridOptions ShowFavoriteProperties=True}"/>
</Window>

See the Using Favorite Properties in the Report Designer topic for more information.

See Also