Print Method (ViewSet, View)
Prints a set of views with a specified view template and default print settings.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 24.0.0.0 (24.0.0.0)

Syntax

C#
public void Print(
	ViewSet views,
	View viewTemplate
)
Visual Basic
Public Sub Print ( _
	views As ViewSet, _
	viewTemplate As View _
)
Visual C++
public:
void Print(
	ViewSet^ views, 
	View^ viewTemplate
)

Parameters

views
Type: Autodesk.Revit.DB..::..ViewSet
The set of views which need to be printed.
viewTemplate
Type: Autodesk.Revit.DB..::..View
The view template which apply to the set of views.

Remarks

If one view in the set can not be printed successfully then an exception will be thrown.

Exceptions

ExceptionCondition
Autodesk.Revit.Exceptions..::..InvalidOperationExceptionThrown when printing is not allowed in the current application mode. Or when at least one view from the view set is not a printable view.
Autodesk.Revit.Exceptions..::..ArgumentNullExceptionThrown when the view set to be printed is nullNothingnullptra null reference (Nothing in Visual Basic).
Autodesk.Revit.Exceptions..::..ArgumentExceptionThrown when the view set contains a nullNothingnullptra null reference (Nothing in Visual Basic) element.
Autodesk.Revit.Exceptions..::..ApplicationExceptionThrown when at least one view from the view set could not be printed.
Autodesk.Revit.Exceptions..::..OperationCanceledExceptionThrown when print is cancelled by event handler.

See Also