Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

DisplayNameAttribute Class

Specifies the member’s display name.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.1.dll

Declaration

[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = true)]
public class DisplayNameAttribute :
    Attribute
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, 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