SheetXL - v0.3.20
    Preparing search index...

    Interface IBorder

    Provides information for describing a border around a shape.

    interface IBorder {
        isIBorder: true;
        getBottom(): IStroke;
        getDiagonalDown(): IStroke;
        getDiagonalUp(): IStroke;
        getLeft(): IStroke;
        getProperties(): IBorder.Properties;
        getRight(): IStroke;
        getTop(): IStroke;
        isEmpty(): boolean;
        toJSON(): IBorder.JSON;
    }
    Index

    Properties

    isIBorder: true

    For runtime type checking.

    Methods

    • Returns IStroke

      The bottom border.

    • Returns IStroke

      The diagonalDown border.

    • Returns IStroke

      The diagonalUp border.

    • Returns IStroke

      The left border.

    • Returns all the set properties and their values for the border.

      Returns IBorder.Properties

    • Returns IStroke

      The right border.

    • Returns IStroke

      The top border.

    • If there are any borders that are not none.

      Returns boolean