@aurigma/design-atoms-model
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
20 lines (19 loc) • 977 B
TypeScript
import { BaseTextItem } from "./BaseTextItem";
import { PointF } from "../../Math/PointF";
export declare class PlainTextItem extends BaseTextItem {
private _baselineLocation;
private _isVertical;
constructor(text?: string, location?: PointF, postScriptFontName?: string, fontSize?: number);
get isVertical(): boolean;
set isVertical(value: boolean);
get baselineLocation(): PointF;
set baselineLocation(value: PointF);
setBaselineLocation(value: PointF, suppressPropertyChanged?: boolean): void;
static type: string;
type: string;
applyPermissionsConstrain(): void;
getSimplifiedObject(omitProperties?: string[] | string): Object;
protected _copy(source: PlainTextItem, destination: BaseTextItem, generateNewIds: boolean, appropriateParentContainer: boolean): BaseTextItem;
equals(other: PlainTextItem): any;
clone(generateNewIds?: boolean, appropriateParentContainer?: boolean): PlainTextItem;
}