ExpressionBindingDescription(String[], Int32, String[], String) Constructor
Initializes a new instance of the ExpressionBindingDescription class with the specified settings.
Namespace: DevExpress.XtraReports.Expressions
Assembly: DevExpress.XtraReports.v24.1.dll
NuGet Package: DevExpress.Reporting.Core
Declaration
public ExpressionBindingDescription(
string[] eventNames,
int position = 1000,
string[] nestedBindableProperties = null,
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. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
position | Int32 | 1000 | An integer value that specifies a weighted position at which the property should be displayed. This value is assigned to the ExpressionBindingDescription.Position property. |
nestedBindableProperties | String[] | null | An array of strings that specifies the property’s inner properties. This value is assigned to the ExpressionBindingDescription.BindableProperties property. |
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. |
Remarks
Refer to the ExpressionBindingDescription class topic for a code sample.