GraphicalLabel.d.ts 449 B

1234567891011
  1. import { Label } from "../Label";
  2. import { TextAlignment } from "../../Common/Enums/TextAlignment";
  3. import { Clickable } from "./Clickable";
  4. import { BoundingBox } from "./BoundingBox";
  5. export declare class GraphicalLabel extends Clickable {
  6. private label;
  7. constructor(label: Label, textHeight: number, alignment: TextAlignment, parent?: BoundingBox);
  8. Label: Label;
  9. toString(): string;
  10. setLabelPositionAndShapeBorders(): void;
  11. }