Interface IAlignmentFrameOptions

interface IAlignmentFrameOptions {
    alignment: {
        x: "center" | "left" | "right" | "inside" | "outside";
        y: "bottom" | "center" | "top" | "inside" | "outside";
    };
    anchor: {
        horizontal: "text" | "margin" | "page";
        vertical: "text" | "margin" | "page";
    };
    anchorLock?: boolean;
    dropCap?: "none" | "margin" | "drop";
    height: number;
    lines?: number;
    rule?: "auto" | "atLeast" | "exact";
    space?: {
        horizontal: number;
        vertical: number;
    };
    type: "alignment";
    width: number;
    wrap?: "auto" | "none" | "around" | "notBeside" | "through" | "tight";
}

Hierarchy

  • IBaseFrameOptions
    • IAlignmentFrameOptions

Properties

alignment: {
    x: "center" | "left" | "right" | "inside" | "outside";
    y: "bottom" | "center" | "top" | "inside" | "outside";
}

Type declaration

  • Readonly x: "center" | "left" | "right" | "inside" | "outside"
  • Readonly y: "bottom" | "center" | "top" | "inside" | "outside"
anchor: {
    horizontal: "text" | "margin" | "page";
    vertical: "text" | "margin" | "page";
}

Type declaration

  • Readonly horizontal: "text" | "margin" | "page"
  • Readonly vertical: "text" | "margin" | "page"
anchorLock?: boolean
dropCap?: "none" | "margin" | "drop"
height: number
lines?: number
rule?: "auto" | "atLeast" | "exact"
space?: {
    horizontal: number;
    vertical: number;
}

Type declaration

  • Readonly horizontal: number
  • Readonly vertical: number
type: "alignment"
width: number
wrap?: "auto" | "none" | "around" | "notBeside" | "through" | "tight"

Generated using TypeDoc