Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#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