Exemplo n.º 1
0
 public void CheckTags(string[] tagNames)
 {
     foreach (string tagName in tagNames)
     {
         TagGrid.CheckRowCheckbox(2, tagName);
     }
 }
Exemplo n.º 2
0
        public void CheckTags(string[] tagNames)
        {
            foreach (string tagName in tagNames)
            {
                TagGrid.CheckRowCheckbox(2, tagName);
            }

            TimeManager.MediumPause();
        }
Exemplo n.º 3
0
 public bool IsAllTagsDisabled()
 {
     return(TagGrid.IsNoEnabledCheckbox());
 }
Exemplo n.º 4
0
 public void UncheckTag(string tagName)
 {
     TagGrid.UncheckRowCheckbox(2, tagName);
 }
Exemplo n.º 5
0
 public bool IsTagChecked(string tagName)
 {
     return(TagGrid.IsRowChecked(2, tagName));
 }