Class ItemScanSettings
- Namespace
- Acuit.Pinpoint.Workstation
- Assembly
- Acuit.Pinpoint.Workstation.Abstractions.dll
Item scan settings used by StartScanningItem(ItemScanSettings).
public class ItemScanSettings
- Inheritance
-
ItemScanSettings
- Inherited Members
Constructors
ItemScanSettings()
public ItemScanSettings()
Properties
BarCodeMatchers
Gets the collection of bar code matchers for the item.
public IList<BarCodeMatcher> BarCodeMatchers { get; }
Property Value
CancelButtonText
Gets or sets the text to show for the cancel button, or null to show the localized form of "Cancel".
public string? CancelButtonText { get; set; }
Property Value
ItemDetails
Gets or sets optional item details, shown centered below ItemName in the scan dialog.
public string? ItemDetails { get; set; }
Property Value
Remarks
This can contain multiple lines.
ItemName
Gets or sets the item name, shown at the top of the scan dialog, to the right of a "Please scan:" prompt.
public required string ItemName { get; set; }
Property Value
Numbers
Gets the collection of settings for numbers to be collected for the item.
public IList<ItemScanNumberSettings> Numbers { get; }
Property Value
ShowCancelButton
Gets or sets whether to show the cancel button.
public bool ShowCancelButton { get; set; }