Interface TreeViewNode


public interface TreeViewNode
A single node in a Web Tree.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Collapses this tree node.
    There may be a slight delay when using this method due to the animation of the collapse operation.
    void
    Expands this tree node.
    There may be a slight delay when using this method due to the animation of the expand operation.
    Returns the full path of this node as a semi-colon delimited string.
  • Method Details

    • getPath

      String getPath() throws GeneralLeanFtException
      Returns the full path of this node as a semi-colon delimited string.
      Returns:
      the full path of this node as a semi-colon delimited string.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • collapse

      void collapse() throws GeneralLeanFtException
      Collapses this tree node.
      There may be a slight delay when using this method due to the animation of the collapse operation. You should add a Sleep statement after this step to pause for the animation.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • expand

      void expand() throws GeneralLeanFtException
      Expands this tree node.
      There may be a slight delay when using this method due to the animation of the expand operation. You should add a Sleep statement after this step to pause for the animation.
      Throws:
      GeneralLeanFtException - if error occurs during execution