borderwidth property

double? get borderwidth

Implementation

double? get borderwidth {
  if (_borderwidth == null) {
    if ((this.parent != null) && (this.parent is TableModel))
      return (this.parent as TableModel).borderwidth;
    return null;
  }
  return _borderwidth?.get();
}
set borderwidth (dynamic v)

Implementation

set borderwidth(dynamic v) {
  if (_borderwidth != null) {
    _borderwidth!.set(v);
  } else if (v != null) {
    _borderwidth = DoubleObservable(
        Binding.toKey(id, 'borderwidth'), v,
        scope: scope, listener: onPropertyChange);
  }
}