@vivliostyle/core
    Preparing search index...

    Interface TableRowLayoutConstraint

    Represents constraints on laying out fragments

    interface TableRowLayoutConstraint {
        cellFragmentLayoutConstraints: {
            breakPosition: Vtree.NodeContext;
            constraints: Layout.FragmentLayoutConstraint[];
        }[];
        flagmentLayoutConstraintType: FragmentLayoutConstraintType;
        allowLayout(
            nodeContext: Vtree.NodeContext,
            overflownNodeContext: Vtree.NodeContext,
            column: Layout.Column,
        ): boolean;
        equalsTo(constraint: Layout.FragmentLayoutConstraint): boolean;
        finishBreak(
            nodeContext: Vtree.NodeContext,
            column: Layout.Column,
        ): Result<boolean>;
        getElementsOffsetsForTableCell(
            column: Layout.Column,
        ): RepetitiveElement.ElementsOffset[];
        getPriorityOfFinishBreak(): number;
        getRepetitiveElements(): RepetitiveElement.RepetitiveElements;
        nextCandidate(nodeContext: Vtree.NodeContext): boolean;
        postLayout(
            allowed: boolean,
            positionAfter: Vtree.NodeContext,
            initialPosition: Vtree.NodeContext,
            column: Layout.Column,
        ): any;
        removeDummyRowNodes(nodeContext: Vtree.NodeContext): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    cellFragmentLayoutConstraints: {
        breakPosition: Vtree.NodeContext;
        constraints: Layout.FragmentLayoutConstraint[];
    }[]
    flagmentLayoutConstraintType: FragmentLayoutConstraintType

    Methods