sorting property

EnumValue get sorting

Gets or sets the default sorting policy for ordering the immediate children of a vertex. Must be TreeLayout.SortingForwards, TreeLayout.SortingReverse, TreeLayout.SortingAscending, or TreeLayout.SortingDescending.

The default value is TreeLayout.SortingForwards.

This sets the #rootDefaults' property of the same name. The sort order is determined by #comparer.

Implementation

_i3.EnumValue get sorting => _i4.getProperty(
      this,
      'sorting',
    );
set sorting (EnumValue value)

Implementation

set sorting(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'sorting',
    value,
  );
}