colcount property

  1. @override
  2. @Accessor(key: 'aria-colcount')
int? colcount

Defines the total number of columns in a table, grid, or treegrid when not all columns are present in the DOM.

See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-colcount

Implementation

@override
@Accessor(key: 'aria-colcount')
int? get colcount =>
    (props[_$key__colcount___$AriaPropsMixin] ?? null) as int?;
  1. @override
  2. @Accessor(key: 'aria-colcount')
void colcount=(int? value)

Defines the total number of columns in a table, grid, or treegrid when not all columns are present in the DOM.

See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-colcount

Implementation

@override
@Accessor(key: 'aria-colcount')
set colcount(int? value) => props[_$key__colcount___$AriaPropsMixin] = value;