borderwidth property

double? get borderwidth

Implementation

double? get borderwidth
{
  if (_borderwidth == null)
  {
    if ((parent != null) && (parent is TableModel)) return (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);
  }
}