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