columnCount property - CssStyleDeclarationBase class - dart:html library (original) (raw)

description

String getcolumnCount

Gets the value of "column-count"

Implementation

String get columnCount => getPropertyValue('column-count');

setcolumnCount (String value)

Sets the value of "column-count"

Implementation

set columnCount(String value) {
  setProperty('column-count', value, '');
}