Class DataBarExtendedParameters
Το όνομα: Aspose.BarCode.BarCodeRecognition Συγκέντρωση: Aspose.BarCode.dll (25.4.0)
Αποθηκεύει ένα DataBar πρόσθετες πληροφορίες αναγνωρισμένου κωδικού γραμμής
public sealed class DataBarExtendedParameters : BaseExtendedParameters
Inheritance
object ← BaseExtendedParameters ← DataBarExtendedParameters
Κληρονομημένα μέλη
BaseExtendedParameters.IsEmpty , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Αυτό το δείγμα δείχνει πώς να πάρετε πρόσθετες πληροφορίες από το DataBar
using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.DatabarOmniDirectional))
{
foreach (BarCodeResult result in reader.ReadBarCodes())
{
Console.WriteLine("BarCode Type: " + result.CodeTypeName);
Console.WriteLine("BarCode CodeText: " + result.CodeText);
Console.WriteLine("QR Structured Append Quantity: " + result.Extended.QR.QRStructuredAppendModeBarCodesQuantity);
}
}
Using reader As New BarCodeReader("c:\test.png", DecodeType.DatabarOmniDirectional)
For Each result As BarCodeResult In reader.ReadBarCodes()
Console.WriteLine("BarCode Type: " + result.CodeTypeName)
Console.WriteLine("BarCode CodeText: " + result.CodeText)
Console.WriteLine("QR Structured Append Quantity: " + result.Extended.QR.QRStructuredAppendModeBarCodesQuantity)
Next
End Using
Properties
ΙΣ2ΔΣΟΜΑΣΤΙΚΗ ΣΥΜΜΕΤΟΧΗ
Λαμβάνει τη σημαία των συνθετικών στοιχείων του DataBar 2D. Η προεπιλεγμένη τιμή είναι ψεύτικη.
public bool Is2DCompositeComponent { get; }
Αξία ιδιοκτησίας
Methods
Equals(αντικείμενο)
Επιστρέφει μια τιμή που υποδεικνύει αν αυτή η περίπτωση είναι ίση με μια καθορισμένη τιμή Aspose.BarCode.BarCodeRecognition.DataBarExtendedParameters.
public override bool Equals(object obj)
Parameters
obj
object
Μια τιμή System.Object για να συγκρίνετε με αυτή την περίπτωση.
Returns
αληθινό αν το obj έχει την ίδια αξία με αυτή την περίπτωση, αλλιώς, In YAML, the value false
can be represented in Greek (el) as follows:
false: ψευδής
In this case, false
translates to ψευδής
, which means “false” in Greek. If you need a specific context or format, please provide additional details!.
GetHashCode()
Επιστρέφει τον κωδικό hash για αυτή την περίπτωση.
public override int GetHashCode()
Returns
Ένας 32-bit υπογράφει ολόκληρο κώδικα hash.
ToString()
Επιστρέφει μια ανθρώπινη αναγνώσιμη υποδοχή αυτής της Aspose.BarCode.BarCodeRecognition.DataBarExtendedParameters.
public override string ToString()
Returns
Μια γραμμή που αντιπροσωπεύει αυτό το Aspose.BarCode.BarCodeRecognition.DataBarExtendedΠarameters.
Operators
Δραστηριότητες =(DataBarExtendedΠαραμέτρων, DataBarExtendedΠαραμέτρων)
Επιστρέφει μια τιμή που υποδεικνύει αν η πρώτη αξία Aspose.BarCode.BarCodeRecognition.DataBarExtendedParameters είναι ίση με τη δεύτερη.
public static bool operator ==(DataBarExtendedParameters first, DataBarExtendedParameters second)
Parameters
first
DataBarExtendedParameters
Πρώτη συγκριτική αξία
second
DataBarExtendedParameters
Δεύτερη συγκριτική αξία
Returns
αληθινό αν το πρώτο έχει την ίδια αξία με το δεύτερο, αλλιώς, In YAML, the value false
can be represented in Greek (el) as follows:
false: ψευδής
In this case, false
translates to ψευδής
, which means “false” in Greek. If you need a specific context or format, please provide additional details!.
Οργανωτής !=(DataBarExtendedΠαραμέτρων, DataBarExtendedΠαραμέτρων)
Επιστρέφει μια τιμή που υποδεικνύει αν η πρώτη αξία Aspose.BarCode.BarCodeRecognition.DataBarExtendedParameters είναι διαφορετική από την δεύτερη.
public static bool operator !=(DataBarExtendedParameters first, DataBarExtendedParameters second)
Parameters
first
DataBarExtendedParameters
Πρώτη συγκριτική αξία
second
DataBarExtendedParameters
Δεύτερη συγκριτική αξία
Returns
αληθινό αν το πρώτο έχει διαφορετική αξία από το δεύτερο, αλλιώς, In YAML, the value false
can be represented in Greek (el) as follows:
false: ψευδής
In this case, false
translates to ψευδής
, which means “false” in Greek. If you need a specific context or format, please provide additional details!.