Ejemplo n.º 1
0
 //---------------------------------------------------
 public void ClearDrawingCache()
 {
     foreach (I2iObjetGraphique objet in Childs)
     {
         C2iObjetDeSchema o = objet as C2iObjetDeSchema;
         if (o != null)
         {
             o.ClearDrawingCache();
         }
     }
 }
Ejemplo n.º 2
0
 //---------------------------------------------------
 public void ClearDrawingCache()
 {
     if (m_imageCache != null)
     {
         m_imageCache.Dispose();
     }
     m_imageCache = null;
     foreach (I2iObjetGraphique objet in Childs)
     {
         C2iObjetDeSchema o = objet as C2iObjetDeSchema;
         if (o != null)
         {
             o.ClearDrawingCache();
         }
     }
 }