Esempio n. 1
0
 void Clear(StrokeGraphic strokeGraphic)
 {
     if (strokeGraphic != null)
     {
         strokeGraphic.ClearStrokes();
     }
 }
 public void ClearAll()
 {
     if (targetGlyphGraphic != null)
     {
         targetGlyphGraphic.ClearStrokes();
     }
     if (castedGlyphGraphic != null)
     {
         castedGlyphGraphic.ClearStrokes();
     }
     if (currentGlyphGraphic != null)
     {
         currentGlyphGraphic.ClearStrokes();
     }
     if (currentStrokeGraphic != null)
     {
         currentStrokeGraphic.ClearStrokes();
     }
 }