getLeftSize method

int getLeftSize()

Returns the width of the left border.

If borders contain runes of varying widths, the widest rune is returned. If no border exists on the left edge, 0 is returned.

Implementation

int getLeftSize() {
  return _getBorderEdgeWidth([topLeft, left, bottomLeft]);
}