Progress® Telerik® Reporting R1 2021
Barcode.Stretch Property
Gets or sets a value indicating whether to stretch the barcode to
fill the entire area of the report item item or not.
Namespace:
Telerik.ReportingAssembly: Telerik.Reporting (in Telerik.Reporting.dll)
Syntax
Property Value
Type: Booleantrue if the barcode should be stretched, otherwise false.
Examples
This example illustrates how to set the Stretch 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