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

ReportToolbarButton.ItemKind Property

Gets or sets the type of a particular report toolbar button.

Namespace: DevExpress.XtraReports.Web

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

Declaration

public ReportToolbarItemKind ItemKind { get; set; }

Property Value

Type Description
ReportToolbarItemKind

A ReportToolbarItemKind enumeration value which defines the type of a toolbar button.

Available values:

Show 15 items
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.

Search

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.

See Also