@syncfusion/ej2-barcode-generator
Version:
Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code.
31 lines (30 loc) • 803 B
TypeScript
import { ChildProperty } from '@syncfusion/ej2-base';
/**
* Defines the space to be left between an object and its immediate parent
*/
export declare class Margin extends ChildProperty<Margin> {
/**
* Sets the space to be left from the left side of the immediate parent of an element
*
* @default 10
*/
left: number;
/**
* Sets the space to be left from the right side of the immediate parent of an element
*
* @default 10
*/
right: number;
/**
* Sets the space to be left from the top side of the immediate parent of an element
*
* @default 10
*/
top: number;
/**
* Sets the space to be left from the bottom side of the immediate parent of an element
*
* @default 10
*/
bottom: number;
}