Esempio n. 1
0
 /// <summary>
 /// Notifys all dimension-properties which use the specified unit that its scale has changed and they need to update
 /// </summary>
 /// <param name="Unit"></param>
 public void Notify_Unit_Scale_Change(ECssUnit Unit)
 {
     if (Unit == ECssUnit.None)
     {
         return;
     }
     foreach (ICssProperty Property in Cascaded.Get_Set_Properties())
     {
         Property.Handle_Unit_Change(Unit);
     }
 }