alignment property

Whether the item is aligned to the left or right.

Implementation

_i3.NotebookCellStatusBarAlignment get alignment =>
    _i3.NotebookCellStatusBarAlignment.values.byName(_i5.getProperty(
      this,
      'alignment',
    ));
set alignment (NotebookCellStatusBarAlignment value)

Implementation

set alignment(_i3.NotebookCellStatusBarAlignment value) {
  _i5.setProperty(
    this,
    'alignment',
    value.name,
  );
}