public static T FindByNameEx <T>(this GuiSapChart SapChart, string Name, int TypeId)
     where T : class
 {
     return(findByNameExTemplate <T>(Name, TypeId, SapChart.FindByNameEx));
 }
Пример #2
0
 public static IEnumerable <T> FindChildrenByProperty <T>(this GuiSapChart SapChart, Func <T, bool> Property = null)
     where T : class
 {
     return(findChildrenByPropertyTemplate <T>(SapChart.Children, Property));
 }