xpo-devexpress-dot-xpo-2507851d.md
Specifies the member’s display name.
Namespace : DevExpress.Xpo
Assembly : DevExpress.Xpo.v25.2.dll
NuGet Package : DevExpress.Xpo
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = true)]
public class DisplayNameAttribute :
Attribute
<AttributeUsage(AttributeTargets.Property Or AttributeTargets.Field, Inherited:=True)>
Public Class DisplayNameAttribute
Inherits Attribute
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; }
}
}
Public Class Customer
Inherits XPObject
Private _customerName As String
<DisplayName("Customer Name")> _
Public Property CustomerName() As String
Get
Return _customerName
End Get
Set(ByVal value As String)
_customerName = value
End Set
End Property
End Class
Object Attribute DisplayNameAttribute
See Also