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

ExpressionBindingDescriptor.HidePropertyDescriptions(Type, String[]) Method

Hides the specified property for the specified control from the Properties panel’s Expressions tab.

Namespace: DevExpress.XtraReports.Expressions

Assembly: DevExpress.XtraReports.v20.2.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Reporting.Core

Declaration

public static void HidePropertyDescriptions(
    Type componentType,
    params string[] propertyNames
)

Parameters

Name Type Description
componentType Type

A Type object that specifies the control type.

propertyNames String[]

An array of strings that specify property names to hide.

Remarks

The following code demonstrates how to hide the Background Color and Tag properties from the End-User Report Designer’s Expressions tab.

DevExpress.XtraReports.Expressions.ExpressionBindingDescriptor.
   HidePropertyDescriptions(typeof(XRLabel), "Tag", "BackColor");

See the ExpressionBindingDescriptor class topic for more information.

The following code snippets (auto-collected from DevExpress Examples) contain references to the HidePropertyDescriptions(Type, String[]) method.

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