defaultColumnSeparatorDashArray property

Array<num>? get defaultColumnSeparatorDashArray

For Panel.Table|Table Panels: Gets or sets the default dash array for a column's separator. RowColumnDefinition#separatorStrokeWidth can override this default value.

Must be an array of positive numbers and zeroes, or else null to indicate a solid line.

For example, the array 5, 10 would create dashes of 5 pixels and spaces of 10 pixels.

Setting an array with all zeroes will set the value to null.

Default is null.

Implementation

_i7.Array<_i2.num>? get defaultColumnSeparatorDashArray => _i4.getProperty(
      this,
      'defaultColumnSeparatorDashArray',
    );
set defaultColumnSeparatorDashArray (Array<num>? value)

Implementation

set defaultColumnSeparatorDashArray(_i7.Array<_i2.num>? value) {
  _i4.setProperty(
    this,
    'defaultColumnSeparatorDashArray',
    value ?? _i5.undefined,
  );
}