ICommonClaimedPosPrinterStation
ICommonClaimedPosPrinterStation
ICommonClaimedPosPrinterStation
ICommonClaimedPosPrinterStation
Interface
Definition
Represents properties and actions common to all type of claimed stations for a point-of-service printer.
public : interface ICommonClaimedPosPrinterStationpublic interface ICommonClaimedPosPrinterStationPublic Interface ICommonClaimedPosPrinterStation// You can use this interface in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Properties
CharactersPerLine CharactersPerLine CharactersPerLine CharactersPerLine
Gets or sets the number of characters the station can print per line of text.
public : unsigned int CharactersPerLine { get; set; }public uint CharactersPerLine { get; set; }Public ReadWrite Property CharactersPerLine As uint// You can use this property in JavaScript.
- Value
- unsigned int uint uint uint
The number of characters the device can print per line of text.
ColorCartridge ColorCartridge ColorCartridge ColorCartridge
Gets or sets the color cartridge that the printer station should use when it prints.
public : PosPrinterColorCartridge ColorCartridge { get; set; }public PosPrinterColorCartridge ColorCartridge { get; set; }Public ReadWrite Property ColorCartridge As PosPrinterColorCartridge// You can use this property in JavaScript.
- Value
- PosPrinterColorCartridge PosPrinterColorCartridge PosPrinterColorCartridge PosPrinterColorCartridge
An enumeration value that identifies the color cartridge that the printer station should use when it prints.
- See Also
IsCartridgeEmpty IsCartridgeEmpty IsCartridgeEmpty IsCartridgeEmpty
Gets whether the cartridge of the printer station is currently out of ink or toner.
public : PlatForm::Boolean IsCartridgeEmpty { get; }public bool IsCartridgeEmpty { get; }Public ReadOnly Property IsCartridgeEmpty As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the cartridge of the printer station is currently out of ink or toner; otherwise, false.
IsCartridgeRemoved IsCartridgeRemoved IsCartridgeRemoved IsCartridgeRemoved
Gets whether the cartridge of the printer station is currently removed.
public : PlatForm::Boolean IsCartridgeRemoved { get; }public bool IsCartridgeRemoved { get; }Public ReadOnly Property IsCartridgeRemoved As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the cartridge of the printer station is currently removed; otherwise, false.
IsCoverOpen IsCoverOpen IsCoverOpen IsCoverOpen
Gets whether the cover of the printer station is currently open.
public : PlatForm::Boolean IsCoverOpen { get; }public bool IsCoverOpen { get; }Public ReadOnly Property IsCoverOpen As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the cover of the printer station is currently open; otherwise, false.
IsHeadCleaning IsHeadCleaning IsHeadCleaning IsHeadCleaning
Gets whether the printer station is currently cleaning its print head.
public : PlatForm::Boolean IsHeadCleaning { get; }public bool IsHeadCleaning { get; }Public ReadOnly Property IsHeadCleaning As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the printer station is currently cleaning its print head; otherwise, false.
IsLetterQuality IsLetterQuality IsLetterQuality IsLetterQuality
Gets or sets whether the printer station prints with high quality or high speed.
public : PlatForm::Boolean IsLetterQuality { get; set; }public bool IsLetterQuality { get; set; }Public ReadWrite Property IsLetterQuality As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the printer station prints with high quality. False if the point-of-service printer prints with high speed.
IsPaperEmpty IsPaperEmpty IsPaperEmpty IsPaperEmpty
Gets whether the printer station needs paper.
public : PlatForm::Boolean IsPaperEmpty { get; }public bool IsPaperEmpty { get; }Public ReadOnly Property IsPaperEmpty As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the printer station needs paper; otherwise, false.
IsPaperNearEnd IsPaperNearEnd IsPaperNearEnd IsPaperNearEnd
Gets whether the printer station is almost out of paper.
public : PlatForm::Boolean IsPaperNearEnd { get; }public bool IsPaperNearEnd { get; }Public ReadOnly Property IsPaperNearEnd As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the printer station is almost out of paper; otherwise, false.
IsReadyToPrint IsReadyToPrint IsReadyToPrint IsReadyToPrint
Gets whether the printer station is on and accepting print jobs.
public : PlatForm::Boolean IsReadyToPrint { get; }public bool IsReadyToPrint { get; }Public ReadOnly Property IsReadyToPrint As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the printer station is on and accepting print jobs; otherwise, false.
LineHeight LineHeight LineHeight LineHeight
Gets or sets the current height of the printed line for the printer station, in the units that the ClaimedPosPrinter.MapMode property specifies.
public : unsigned int LineHeight { get; set; }public uint LineHeight { get; set; }Public ReadWrite Property LineHeight As uint// You can use this property in JavaScript.
- Value
- unsigned int uint uint uint
The current height of the printed line for the printer station, in the units that the ClaimedPosPrinter.MapMode property specifies.
- See Also
LineSpacing LineSpacing LineSpacing LineSpacing
Gets or sets the spacing of each single-high print line for the printer station, in the units that the ClaimedPosPrinter.MapMode property specifies. This spacing includes both the height of printed line and of the white space between each pair of lines.
public : unsigned int LineSpacing { get; set; }public uint LineSpacing { get; set; }Public ReadWrite Property LineSpacing As uint// You can use this property in JavaScript.
- Value
- unsigned int uint uint uint
The spacing of each single-high print line for the slip printer station, in the units that the ClaimedPosPrinter.MapMode property specifies.
LineWidth LineWidth LineWidth LineWidth
Gets the current width of the printed line for the printer station, in the units that the ClaimedPosPrinter.MapMode property specifies.
public : unsigned int LineWidth { get; }public uint LineWidth { get; }Public ReadOnly Property LineWidth As uint// You can use this property in JavaScript.
- Value
- unsigned int uint uint uint
The current width of the printed line for the printer station, in the units that the ClaimedPosPrinter.MapMode property specifies.
- See Also
Methods
ValidateData(String) ValidateData(String) ValidateData(String) ValidateData(String)
Determines whether a data sequence, possibly including one or more escape sequences, is valid for the printer station, before you use that data sequence when you call the IPosPrinterJob.Print and IPosPrinterJob.ExecuteAsync methods.
public : PlatForm::Boolean ValidateData(PlatForm::String data)public bool ValidateData(String data)Public Function ValidateData(data As String) As bool// You can use this method in JavaScript.
- data
- PlatForm::String String String String
The data sequence that you want to validate before you use it with the IPosPrinterJob.Print method. This sequence may include printable data and escape sequences.
If the sequence is not valid, and you use it with IPosPrinterJob.Print anyways, the job fails when you run it with IPosPrinterJob.ExecuteAsync. You cannot remove a print instruction that uses an invalid data sequence after you add the instruction to the job with IPosPrinterJob.Print.
True if the data passes validation; otherwise false.