Click or drag to resize
GridPrintPageEventArgs Class
Supplies data for the GridPrintPage event of the GridControl class.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    Stingray.GridGridPrintPageEventArgs

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public class GridPrintPageEventArgs : EventArgs

The GridPrintPageEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodGridPrintPageEventArgs
Initializes a new GridPrintPageEventArgs object.
Top
Properties
  NameDescription
Public propertyCancel
Gets or sets whether or not the printing operation should be cancelled.
Public propertyCurrentPage
Gets or sets the page number of the page being printed.
Top
Remarks
These event arguments are supplied to any overridden GridPrintPage event handler, as well as to any delegates attached to the GridPrintPage event.
The GridPrintPage event is invoked as each page of a printed GridControl is printed. This class allows you to cancel a print job and get the page number of the currently printing page (counting from 1).
See Also