Interface ITextWrapping

interface ITextWrapping {
    margins?: IDistance;
    side?:
        | "left"
        | "right"
        | "bothSides"
        | "largest";
    type:
        | 0
        | 1
        | 2
        | 3;
}

Properties

Properties

margins?: IDistance
side?:
    | "left"
    | "right"
    | "bothSides"
    | "largest"
type:
    | 0
    | 1
    | 2
    | 3