Progress® Telerik® Reporting R1 2021
Barcode.Encoder Property
Gets or sets the current encoder used to
encode the Value property as series of bars and spaces.
Namespace:
Telerik.ReportingAssembly: Telerik.Reporting (in Telerik.Reporting.dll)
Syntax
[TypeConverterAttribute(typeof(ExpandableObjectConverter))] public Encoder Encoder { get; set; }
Property Value
Type: EncoderExamples
This example illustrates how to set the Encoder property.
var encoder = new Telerik.Reporting.Barcodes.Code128AEncoder(); // Set any specific encoder settings... encoder.ShowText = false; // The default value is true. this.barcode1.Encoder = encoder; this.barcode1.Angle = 90; this.barcode1.BarAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left; this.barcode1.Checksum = true; this.barcode1.Module = Telerik.Reporting.Drawing.Unit.Point(3); this.barcode1.Stretch = false; this.barcode1.Value = "1234567890";
Version Information
Supported in: 1.0.1