CrystalReportViewer.ShowExportButton Propriété
Obtient ou définit si la barre d'outils du contrôle CrystalReportViewer comporte le bouton permettant d'effectuer des exportations.
Espace de noms CrystalDecisions.Windows.Forms Assembly CrystalDecisions.Windows.Forms (CrystalDecisions.Windows.Forms.dll)
Syntaxe
Public Property ShowExportButton As Boolean
public bool ShowExportButton {get; set;}
Exemple
Cet exemple affiche tous les boutons disponibles dans la barre d'outils du contrôle CrystalReportViewer.
Private Sub SetShowButtons()
CrystalReportViewer.ShowCloseButton = True
CrystalReportViewer.ShowExportButton = True
CrystalReportViewer.ShowGotoPageButton = True
CrystalReportViewer.ShowGroupTreeButton = True
CrystalReportViewer.ShowPageNavigateButtons = True
CrystalReportViewer.ShowPrintButton = True
CrystalReportViewer.ShowRefreshButton = True
CrystalReportViewer.ShowTextSearchButton = True
CrystalReportViewer.ShowZoomButton = True
End Sub
private void SetShowButtons()
{
crystalReportViewer.ShowCloseButton = true;
crystalReportViewer.ShowExportButton = true;
crystalReportViewer.ShowGotoPageButton = true;
crystalReportViewer.ShowGroupTreeButton = true;
crystalReportViewer.ShowPageNavigateButtons = true;
crystalReportViewer.ShowPrintButton = true;
crystalReportViewer.ShowRefreshButton = true;
crystalReportViewer.ShowTextSearchButton = true;
crystalReportViewer.ShowZoomButton = true;
}
Informations de version
Crystal Reports Basic for Visual Studio 2008
Pris en charge depuis : Crystal Reports for Visual Studio .NET 2002
Voir aussi
Référence
CrystalReportViewer Classe
CrystalReportViewer Membres
CrystalDecisions.Windows.Forms Espace de noms