public IEnumerable <T> SelectElements <T>(string guiPath) where T : IGuiElement { GuiPath path = new GuiPath(guiPath); return(path.SelectElements <T>(this)); }
public T SelectSingleElement <T>(string guiPath) where T : IGuiElement { GuiPath path = new GuiPath(guiPath); return(path.SelectSingleElement <T>(this)); }