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

TreeListAppearanceCollection.Row Property

Gets the appearance settings used to paint data cells within Tree List nodes.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

public AppearanceObject Row { get; }

Property Value

Type Description
AppearanceObject

An AppearanceObject object that provides the appearance settings used to paint data cells within Tree List nodes.

Remarks

The Row property specifies the appearance settings of the data cells that reside within nodes. Even and odd nodes can be painted using different appearances. Use the TreeListAppearanceCollection.EvenRow and TreeListAppearanceCollection.OddRow properties for this purpose. In this case, the appearance settings specified by the Row property are combined.

Individual columns can override the appearance settings for their cells via the TreeListColumn.AppearanceCell property. To specify custom appearances for individual node cells, handle the TreeList.NodeCellStyle event.

For more information on appearances, see the Appearances topic.

See Also