Exemple #1
0
 internal static bool GetPropertyTypeInfo(AutomationIdentifier id, out PropertyTypeInfo info)
 {
     foreach (PropertyTypeInfo info2 in _propertyInfoTable)
     {
         if (info2.ID == id)
         {
             info = info2;
             return true;
         }
     }
     info = null;
     return false;
 }