Class ColorLessContainer
Inheritance
ColorLessContainer
Constructors
(constructor)(initialItems, name)
Constructs a new instance of the ColorLessContainer class
Declaration
constructor(initialItems?: BaseItem[], name?: string);
Parameters
| Type |
Name |
Description |
| BaseItem[] |
initialItems |
|
| string |
name |
|
Properties
amount
Declaration
get amount(): number;
set amount(value: number);
Property Value
dither
Declaration
get dither(): Dither;
set dither(value: Dither);
Property Value
dpi
Declaration
Property Value
| Type |
Description |
| number | null |
|
Declaration
get format(): Format;
set format(value: Format);
Property Value
opaque
Declaration
Property Value
outputColor
Declaration
Property Value
renderingType
Declaration
get renderingType(): RenderingType;
Property Value
type
Declaration
Property Value
type
Declaration
Property Value
visualization
Declaration
visualization: ContainerVisualization | null;
Property Value
Methods
_copy(source, destination, generateNewIds)
Declaration
protected _copy(source: ColorLessContainer, destination: ColorLessContainer, generateNewIds: boolean): void;
Parameters
Returns
clone(generateNewIds)
Declaration
clone(generateNewIds?: boolean): SurfaceContainer;
Parameters
| Type |
Name |
Description |
| boolean |
generateNewIds |
|
Returns
getSimplifiedObject()
Declaration
getSimplifiedObject(): {
outputColor: import("../Colors").IColor;
opaque: boolean;
dpi: number;
visualization: object;
format: Format;
dither: Dither;
amount: number;
printingTechniqueConstraints: {
allowRasterElements: boolean;
minWidth: number;
minFontSize: number;
targetDpi: number;
};
constraints: {
maxArtworkSize: {
width: number;
height: number;
shapeType: import(".").ArtworkShapeType;
};
};
constructor: Function;
toString(): string;
toLocaleString(): string;
valueOf(): Object;
hasOwnProperty(v: string | number | symbol): boolean;
isPrototypeOf(v: Object): boolean;
propertyIsEnumerable(v: string | number | symbol): boolean;
};
Returns
| Type |
Description |
| {
outputColor: import("../Colors").IColor;
opaque: boolean;
dpi: number;
visualization: object;
format: Format;
dither: Dither;
amount: number;
printingTechniqueConstraints: {
allowRasterElements: boolean;
minWidth: number;
minFontSize: number;
targetDpi: number;
};
constraints: {
maxArtworkSize: {
width: number;
height: number;
shapeType: import(".").ArtworkShapeType;
};
};
constructor: Function;
toString(): string;
toLocaleString(): string;
valueOf(): Object;
hasOwnProperty(v: string | number | symbol): boolean;
isPrototypeOf(v: Object): boolean;
propertyIsEnumerable(v: string | number | symbol): boolean;
} |
|