Ejemplo n.º 1
0
        public override List <ActUIElement.eElementAction> GetSubElementAction(ActUIElement.eSubElementType subElementType)
        {
            List <ActUIElement.eElementAction> list = new List <ActUIElement.eElementAction>();

            switch (subElementType)
            {
            case ActUIElement.eSubElementType.HTMLTable:
                list.Add(ActUIElement.eElementAction.TableAction);
                list.Add(ActUIElement.eElementAction.TableCellAction);
                list.Add(ActUIElement.eElementAction.TableRowAction);
                break;

            default:
                list.Add(ActUIElement.eElementAction.TableAction);
                list.Add(ActUIElement.eElementAction.TableCellAction);
                list.Add(ActUIElement.eElementAction.TableRowAction);
                break;
            }
            return(list);
        }
Ejemplo n.º 2
0
 public virtual List <ActUIElement.eElementAction> GetSubElementAction(ActUIElement.eSubElementType subElementType)
 {
     return(null);
 }