[]
Prints the grid.
public void Print()
Prints the grid.
public void Print(PrinterSettings printerSettings)
Type | Name | Description |
---|---|---|
PrinterSettings | printerSettings | Specifies the printer settings (including the printer) to use. |
Saves the current grid to a stream.
Note that unlike most other print/export methods, this method does not require C1.PrintDocument assemblies.
public void Print(Stream stream, bool binaryFormat)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
bool | binaryFormat | The format of the output file, true binary format should be used (C1DB) otherwise standard C1D format. |
The stream's Position is set to 0 when the method returns.
This method does not show progress dialog (ignoring ShowProgressForm property).
Saves the current grid to a stream in C1D (native C1PrintDocument) format.
Note that unlike most other print/export methods, this method does not require C1.PrintDocument assemblies.
public void Print(Stream stream)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
The stream's Position is set to 0 when the method returns.
This method does not show progress dialog (ignoring ShowProgressForm property).