contentStyleFunc method

BoxBuilder contentStyleFunc(
  1. BoxContentStyleFunc func
)

Sets the content style function for per-line styling.

Takes precedence over contentStyle when both are set.

Implementation

BoxBuilder contentStyleFunc(BoxContentStyleFunc func) {
  _contentStyleFunc = func;
  return this;
}