getActiveIndexFor abstract method

int? getActiveIndexFor(
  1. TreeViewNode<T> node
)

Returns the current row index of the given TreeViewNode.

If the node is not currently active in the tree, meaning its parent is collapsed, this will return null.

Implementation

int? getActiveIndexFor(TreeViewNode<T> node);