[]
        
(Showing Draft Content)

BarcodeSettings

Type Alias: BarcodeSettings

type BarcodeSettings = object;

Properties

hideUnsupportedBarcodeJSProperties?

optional hideUnsupportedBarcodeJSProperties: boolean;

Hides some unsupported barcodeJS properties

Examples

// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			barcode: {
				hideUnsupportedBarcodeJSProperties: true
			}
		}
	}
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			barcode: {
				hideUnsupportedBarcodeJSProperties: true
			}
		}
	}
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			barcode: {
				hideUnsupportedBarcodeJSProperties: true
			}
		}
	}
});

symbologies?

optional symbologies: RdlxBarcodeSymbology[];

Limits the list of barcode symbologies available for creation.
By default all barcode symbologies supported by ActiveReports are available.

Examples

// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			barcode: {
				symbologies: ['Code_128_A', 'Code_128_B', 'Code_128_C']
			}
		}
	}
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			barcode: {
				symbologies: ['Code_128_A', 'Code_128_B', 'Code_128_C']
			}
		}
	}
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			barcode: {
				symbologies: ['Code_128_A', 'Code_128_B', 'Code_128_C']
			}
		}
	}
});