Class Barcode
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
- API Level:
- 4
Represents a detected barcode.
public class Barcode
- Inheritance
-
Barcode
Constructors
View SourceBarcode(Quadrangle, String, BarcodeType)
Initializes a new instance of the Barcode class.
Declaration
public Barcode(Quadrangle region, string message, BarcodeType type)
Parameters
Type | Name | Description |
---|---|---|
Quadrangle | region | |
String | message | |
BarcodeType | type |
API Level: 4
Properties
View SourceMessage
The decoded message of the barcode.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 4
View SourceRegion
The quadrangle location of the detected barcode.
Declaration
public Quadrangle Region { get; }
Property Value
Type | Description |
---|---|
Quadrangle |
API Level: 4
View SourceType
The type of the detected barcode.
Declaration
public BarcodeType Type { get; }
Property Value
Type | Description |
---|---|
BarcodeType |
API Level: 4
Methods
View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | A string that represents the current object. |