@vivliostyle/core
    Preparing search index...

    Interface RepetitiveElementsOwnerLayoutConstraint

    Represents constraints on laying out fragments

    interface RepetitiveElementsOwnerLayoutConstraint {
        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>;
        getPriorityOfFinishBreak(): number;
        getRepetitiveElements(): RepetitiveElement.RepetitiveElements;
        nextCandidate(nodeContext: Vtree.NodeContext): boolean;
        postLayout(
            allowed: boolean,
            positionAfter: Vtree.NodeContext,
            initialPosition: Vtree.NodeContext,
            column: Layout.Column,
        ): any;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    flagmentLayoutConstraintType: FragmentLayoutConstraintType

    Methods