Exemplo n.º 1
0
 public Boolean OnlyUnCheckHierarchyNode(string[] hierarchyNames)
 {
     try
     {
         HierarchyTree.ExpandNodePath(hierarchyNames);
         HierarchyTree.UncheckNode(hierarchyNames.Last());
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Exemplo n.º 2
0
 public Boolean UnCheckHierarchyNode(string[] hierarchyNames)
 {
     try
     {
         SelectHierarchyButton.Click();
         TimeManager.ShortPause();
         HierarchyTree.ExpandNodePath(hierarchyNames);
         HierarchyTree.CheckNode(hierarchyNames.Last());
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Exemplo n.º 3
0
 public void ExpandHierarchyNodePath(string[] hierarchyNodePath)
 {
     HierarchyTree.ExpandNodePath(hierarchyNodePath);
     TimeManager.FlashPause();
 }
Exemplo n.º 4
0
 public void ExpandHierarchyNodePath(string[] hierarchyNodePath)
 {
     DimensionHierarchyTree.ExpandNodePath(hierarchyNodePath);
 }
Exemplo n.º 5
0
 public void OnlyCheckHierarchyNode(string[] hierarchyNames)
 {
     HierarchyTree.ExpandNodePath(hierarchyNames);
     TimeManager.ShortPause();
     HierarchyTree.CheckNode(hierarchyNames.Last());
 }
Exemplo n.º 6
0
 /// <summary>
 /// Expand the hierarchy node path
 /// </summary>
 /// <param name = "nodePath">Hierarchy nodes will be expanded</param>
 /// <returns></returns>
 public void ExpandHierarchyNodePath(string[] nodePath)
 {
     HierarchyTree.ExpandNodePath(nodePath);
 }