HIBCLICPrimaryDataCodetext
अंतर्वस्तु
[
छिपाना
]HIBCLICPrimaryDataCodetext class
एचआईबीसी एलआईसी कोड में एम्बेड किए गए पाठ को एन्कोडिंग और डिकोड करने के लिए वर्ग जो प्राथमिक डेटा संग्रहीत करता है।
public class HIBCLICPrimaryDataCodetext : HIBCLICComplexCodetext
कंस्ट्रक्टर्स
नाम | विवरण |
---|---|
HIBCLICPrimaryDataCodetext() | डिफ़ॉल्ट कंस्ट्रक्टर। |
गुण
नाम | विवरण |
---|---|
BarcodeType { get; set; } | बारकोड प्रकार प्राप्त या सेट करता है। HIBC LIC कोडटेक्स्ट को HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC और HIBCQRLIC एन्कोड प्रकारों का उपयोग करके एन्कोड किया जा सकता है। डिफ़ॉल्ट मान: HIBCCode39LIC. |
Data { get; set; } | प्राथमिक डेटा की पहचान करता है। |
तरीकों
नाम | विवरण |
---|---|
override Equals(object) | एक मान लौटाता है जो दर्शाता है कि यह उदाहरण निर्दिष्ट के बराबर है या नहींHIBCLICPrimaryDataCodetext मान. |
GetBarcodeType() | बारकोड प्रकार प्राप्त करता है। |
override GetConstructedCodetext() | कोडटेक्स्ट बनाता है |
override GetHashCode() | इस उदाहरण के लिए हैश कोड लौटाता है। |
override InitFromString(string) | निर्मित कोडटेक्स्ट से उदाहरण आरंभ करता है। |
उदाहरण
यह नमूना दिखाता है कि HIBCLICPrimaryCodetext. का उपयोग करके HIBC LIC को कैसे एनकोड और डीकोड करना है
[C#]
HIBCLICPrimaryCodetext complexCodetext = new HIBCLICPrimaryCodetext();
complexCodetext.BarcodeType = EncodeTypes.HIBCQRLIC;
complexCodetext.Data = new PrimaryData();
complexCodetext.Data.ProductOrCatalogNumber = "12345";
complexCodetext.Data.LabelerIdentificationCode = "A999";
complexCodetext.Data.UnitOfMeasureID = 1;
using (ComplexBarcodeGenerator generator = new ComplexBarcodeGenerator(complexCodetext))
{
Bitmap image = generator.GenerateBarCodeImage();
using (BarCodeReader reader = new BarCodeReader(image, DecodeType.HIBCQRLIC))
{
reader.ReadBarCodes();
string codetext = reader.FoundBarCodes[0].CodeText;
HIBCLICPrimaryCodetext result = (HIBCLICPrimaryCodetext)ComplexCodetextReader.TryDecodeHIBCLIC(codetext);
Console.WriteLine("Product or catalog number: " + result.Data.ProductOrCatalogNumber);
Console.WriteLine("Labeler identification code: " + result.Data.LabelerIdentificationCode);
Console.WriteLine("Unit of measure ID: " + result.Data.UnitOfMeasureID);
}
}
यह सभी देखें
- class HIBCLICComplexCodetext
- नाम स्थान Aspose.BarCode.ComplexBarcode
- सभा Aspose.BarCode