Skip to main content
A newer version of this page is available. .

CategoryRowProperties.FieldName Property

Overrides the inherited RowProperties.FieldName property to return an empty string and prohibit property value modifications.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

[Browsable(false)]
public override string FieldName { get; set; }

Property Value

Type Description
String

The String.Empty value.

Remarks

Since category rows display only headers and do not display any data cells, they do not use most row item settings inherited from the RowProperties class. Rows of this type only need the settings which affect their header, such as caption text and image.

The FieldName property is overridden in the CategoryRowProperties class to hide this property from the Row Designer page of the Property Editor designer and therefore disable its editing at design time. The overridden FieldName property returns the String.Empty value and does not provide a set specifier.

See Also