DisplayNameAttribute Class
Specifies the member’s display name.
Namespace: DevExpress.Xpo
Assembly:
DevExpress.Xpo.v24.2.dll
Declaration
[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
See Also