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

ReportToolbarItemKind Enum

Specifies the type of a particular ReportToolbarItem.

Namespace: DevExpress.XtraReports.Web

Assembly: DevExpress.XtraReports.v19.2.Web.WebForms.dll

NuGet Package: DevExpress.Web.Reporting

Declaration

public enum ReportToolbarItemKind

Members

Name Description
Custom

Represents any custom toolbar item. Note that you may add any custom item to the collection returned by the ReportToolbar.Items property.

Represents a button to invoke the Search dialog, allowing end-users to search for specific text in a report.

PrintReport

Represents a button used to print the entire report.

PrintPage

Represents a button used to print the current page.

FirstPage

Represents a button to display the first page of a report.

PreviousPage

Represents a button used to display the previous page of a report.

NextPage

Represents a button to display the next page of a report.

LastPage

Represents a button to display the last page of a report.

SaveToWindow

Represents a button to export a report and show it in a new window. The export format is specified by the ReportToolbarItemKind.SaveFormat toolbar item.

SaveToDisk

Represents a button to export a report and save it to the disk. The export format is specified by the ReportToolbarItemKind.SaveFormat toolbar item.

PageCount

Represents an edit box that displays the total number of report pages.

PageNumber

Represents a drop-down list that allows end-users to select the page to be shown.

SaveFormat

Represents a drop-down list, allowing end-users to choose an export format for the report. The report can be exported by clicking on either the ReportToolbarItemKind.SaveToDisk or ReportToolbarItemKind.SaveToWindow toolbar button.

PageLabel

Represents the “Page” caption before the drop-down list that allows end-users to select the page to be shown.

OfLabel

Represents the “of” caption before the edit box that displays the total number of report pages.

Related API Members

The following properties accept/return ReportToolbarItemKind values:

Remarks

Use this enumeration’s members to specify the type of a paricular item in the ReportToolbar control. Note that this enumeration is used by the ReportToolbarItem.ItemKind property.

See Also