Example #1
0
 public Property GetInheritedProperty(string propertyName)
 {
     if (builder != null)
     {
         if (parentPropertyList != null && IsInherited(propertyName))
         {
             return(parentPropertyList.GetProperty(propertyName));
         }
         else
         {
             try
             {
                 return(builder.MakeProperty(this, propertyName));
             }
             catch (FonetException e)
             {
                 FonetDriver.ActiveDriver.FireFonetError(
                     "Exception in getInherited(): property=" + propertyName + " : " + e);
             }
         }
     }
     return(null);
 }