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

TreeListMenuItemClickEventArgs.IsFooter Property

Gets a value indicating whether a summary footer’s menu item has been clicked.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

public bool IsFooter { get; }

Property Value

Type Description
Boolean

true if the summary footer’s menu item has been clicked; false if either the column header or row footer’s menu item has been clicked.

Remarks

Use the IsFooter property in conjunction with the TreeListMenuItemClickEventArgs.MenuType property to determine which menu item has been clicked. Review the table below for an explanation:

The IsFooter property value The MenuType property value Menu type
true TreeListMenuType.Summary Summary footer menu.
false TreeListMenuType.Summary Row footer menu.
false TreeListMenuType.Column Column header menu.
See Also