effectiveContentWidth method

int effectiveContentWidth()

Implementation

int effectiveContentWidth() {
  if (width <= 0) {
    return 0;
  }
  return math.max(0, width - leadingColumns);
}