Skip to main content
.NET 6.0+

DisplayNameAttribute Class

Specifies the member’s display name.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = true)]
public class DisplayNameAttribute :
    Attribute

Remarks

The following sample code shows how to use the DisplayNameAttribute attribute.

public class Customer : XPObject {

    private string _customerName;

    [DisplayName("Customer Name")]
    public string CustomerName {
        get { return _customerName; }
        set { _customerName = value; }
    }
}

Inheritance

Object
Attribute
DisplayNameAttribute
See Also