Метод ReportViewer.PrintDialog
Отображает диалоговое окно Печать.
Пространство имен: Microsoft.Reporting.WinForms
Сборка: Microsoft.ReportViewer.WinForms (в Microsoft.ReportViewer.WinForms.dll)
Синтаксис
'Декларация
Public Function PrintDialog As DialogResult
'Применение
Dim instance As ReportViewer
Dim returnValue As DialogResult
returnValue = instance.PrintDialog()
public DialogResult PrintDialog()
public:
DialogResult PrintDialog()
member PrintDialog : unit -> DialogResult
public function PrintDialog() : DialogResult
Возвращаемое значение
Тип: System.Windows.Forms.DialogResult
Значение Cancel, если пользователь нажал кнопку Отмена или отменено событие Print. Значение OK, если пользователь нажал кнопку ОК.
Замечания
При вызове этого метода во время подготовки отчета к просмотру в элементе управления возникает исключение InvalidOperationException.
Примеры
private void button1_Click(object sender, EventArgs e)
{
reportViewer.PrintDialog();
}
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
ReportViewer1.PrintDialog()
End Sub