FieldName Property
See Also 
Xceed.Wpf.DataGrid Assembly > Xceed.Wpf.DataGrid Namespace > ColumnBase Class : FieldName Property

Gets or sets the case-sensitive field name that uniquely identifies the column in a grid's column collection.

Syntax

Visual Basic (Declaration) 
Public Property FieldName As String
C# 
public string FieldName {get; set;}

Return Value

A string representing the field name that uniquely identifies the column in a grid's column collection. By default, a null reference (Nothing in Visual Basic).

Exceptions

ExceptionDescription
System.InvalidOperationExceptionThrown when a column's FieldName property is set after the column has been added to a grid's column collection.

Remarks

When sorting and/or grouping data items, the name of the property in the data item and the value of the FieldName property must be identical otherwise neither sorting nor grouping will work.

Requirements

Supported Frameworks: Microsoft .NET Framework version 3.5

See Also