Skip to main content

ExpressionBindingDescription(String[], Int32, Type, String) Constructor

Initializes a new instance of the ExpressionBindingDescription class with the specified settings.

Namespace: DevExpress.XtraReports.Expressions

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public ExpressionBindingDescription(
    string[] eventNames,
    int position,
    Type surrogateType,
    string scopeName = ""
)

Parameters

Name Type Description
eventNames String[]

An array of strings that specify events in which the property should be available. This value is assigned to the ExpressionBindingDescription.EventNames property.

position Int32

An integer value that specifies a weighted position at which the property should be displayed. This value is assigned to the ExpressionBindingDescription.Position property.

surrogateType Type

A Type object that specifies the surrogate type used to change values of read-only complex properties. This value is assigned to the ExpressionBindingDescription.SurrogateType property.

Optional Parameters

Name Type Default Description
scopeName String String.Empty

A string that specifies the property’s category (the empty string indicates the root node). This value is assigned to the ExpressionBindingDescription.ScopeName property.

See Also