Skip to main content
.NET 6.0+

XPServerModeView.AddProperty(String, CriteriaOperator, SortDirection) Method

Creates a new ServerViewProperty object and appends it to the Properties collection.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public ServerViewProperty AddProperty(
    string name,
    CriteriaOperator property,
    SortDirection sorting
)

Parameters

Name Type Description
name String

A string value that specifies the property name. This value is assigned to the Name property.

property CriteriaOperator

The expression used to calculate values in a column on the data store side.

sorting SortDirection

A SortDirection enumeration value that specifies a sort order for property values to be retrieved from the data store. This value is assigned to the Sorting property.

Returns

Type Description
ServerViewProperty

The ServerViewProperty object that was added to the Properties collection.

See Also