Class ReadBarcodeNode
Extracts a barcode from a .tif or .pdf file.
Provides additional functionality to convert the input file to black-and-white.
Inheritance
System.Object
ReadBarcodeNode
Namespace: Simplic.Framework.Flow
Assembly: Simplic.Framework.Flow.dll
Syntax
public class ReadBarcodeNode : ActionNode
Properties
| Improve this Doc View SourceFriendlyName
Declaration
public override string FriendlyName { get; }
Property Value
Type | Description |
---|---|
System.String |
InPinBarcodeFormats
Accepts the formats of the barcodes to be extracted as a list of string.
Declaration
public DataPin InPinBarcodeFormats { get; set; }
Property Value
Type | Description |
---|---|
DataPin |
InPinBlob
Accepts the input file BLOB as a byte array.
Declaration
public DataPin InPinBlob { get; set; }
Property Value
Type | Description |
---|---|
DataPin |
InPinConvertBlackAndWhite
Accepts the information whether to convert to black-and-white or not as a boolean.
Declaration
public DataPin InPinConvertBlackAndWhite { get; set; }
Property Value
Type | Description |
---|---|
DataPin |
InPinFileExtension
Accepts the input file extensions as a list of string.
Declaration
public DataPin InPinFileExtension { get; set; }
Property Value
Type | Description |
---|---|
DataPin |
Name
Declaration
public override string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
OutNodeEachBarcode
Triggers for each extracted barcode.
Declaration
public ActionNode OutNodeEachBarcode { get; set; }
Property Value
Type | Description |
---|---|
ActionNode |
OutNodeFailed
Triggers when the the barcode extraction failes.
Declaration
public ActionNode OutNodeFailed { get; set; }
Property Value
Type | Description |
---|---|
ActionNode |
OutNodeSuccess
Triggers when the barcode extraction was successful.
Declaration
public ActionNode OutNodeSuccess { get; set; }
Property Value
Type | Description |
---|---|
ActionNode |
OutPinBarcodePages
Provides the barcode recognition results as a list of BarcodeRecognitionResult.
Declaration
public DataPin OutPinBarcodePages { get; set; }
Property Value
Type | Description |
---|---|
DataPin |
OutPinCurrentBarcode
Provides the containing page number for each barcode as a string.
Declaration
public DataPin OutPinCurrentBarcode { get; set; }
Property Value
Type | Description |
---|---|
DataPin |
Methods
| Improve this Doc View SourceExecute(IFlowRuntimeService, DataPinScope)
Declaration
public override bool Execute(IFlowRuntimeService runtime, DataPinScope scope)
Parameters
Type | Name | Description |
---|---|---|
IFlowRuntimeService | runtime | |
DataPinScope | scope |
Returns
Type | Description |
---|---|
System.Boolean |