Class MultiGridPrintDocument.RemoveGridEventArgs
Provides data for the MultipleGridPrint event.
Inherited Members
Namespace: Syncfusion.GridHelperClasses
Assembly: Syncfusion.GridHelperClasses.Windows.dll
Syntax
public class RemoveGridEventArgs : SyncfusionCancelEventArgs
Constructors
RemoveGridEventArgs(GridControlBase, String, Boolean)
Initializes a new instance of the MultiGridPrintDocument.RemoveGridEventArgs class.
Declaration
public RemoveGridEventArgs(GridControlBase gridsToPrint, string name, bool cancel)
Parameters
| Type | Name | Description |
|---|---|---|
| GridControlBase | gridsToPrint | Collection of grids to be printed. |
| System.String | name | Name of a grid to be printed. |
| System.Boolean | cancel | Indicates whether printing has to be canceled. |
RemoveGridEventArgs(List<GridControlBase>, GridControlBase, Boolean)
Initializes a new instance of the MultiGridPrintDocument.RemoveGridEventArgs class.
Declaration
public RemoveGridEventArgs(List<GridControlBase> gridsToPrint, GridControlBase gridName, bool cancel)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.List<GridControlBase> | gridsToPrint | Collection of grids to be printed. |
| GridControlBase | gridName | Grid to be printed. |
| System.Boolean | cancel | Indicates whether printing has to be canceled. |
Properties
gridList
Gets the collection of grid.
Declaration
public List<GridControlBase> gridList { get; }
Property Value
| Type |
|---|
| System.Collections.Generic.List<GridControlBase> |
GridName
Gets the name of a grid.
Declaration
public GridControlBase GridName { get; }
Property Value
| Type |
|---|
| GridControlBase |
GridsToPrint
Gets the GridControlBase to be printed.
Declaration
public GridControlBase GridsToPrint { get; }
Property Value
| Type |
|---|
| GridControlBase |
Name
Converts the data to string format.
Declaration
public string Name { get; }
Property Value
| Type |
|---|
| System.String |