PrinterSelectionMode Enumeration |
Specifies how to select printer to print a section-related document on a specific terminal.
Namespace:
Resto.Front.Api.Data.Print
Assembly:
Resto.Front.Api.V6 (in Resto.Front.Api.V6.dll)
Syntax public enum PrinterSelectionMode
Members
| Member name | Value | Description |
---|
| Default | 0 |
Treat section settings as a base level and terminal settings as an override.
Printer will be selected by terminal settings if they specify some printer for a document, otherwise printer will be selected using section settings.
|
| BySection | 1 |
Select printer using section settings.
Terminal settings will be ignored.
|
| ByTerminal | 2 |
Select printer using terminal settings.
Currently, section settings will be used as a fallback if printer cannot be selected by terminal, so this option coincides with Default,
but it's just an implementation detail, which may be changed at any time.
|
Remarks
Each
IRestaurantSection has printer settings and each terminal (iikoFront application instance) also may have it's own printer settings,
so it's necessary to specify, which settings to use to select a printer.
See Also