StopBlinking() public méthode

Causes the graphic to stop blinking
public StopBlinking ( ) : void
Résultat void
 /// <summary>
 /// Unselects the selected graphic, if there is one
 /// </summary>
 public void UnselectAll()
 {
     if (m_selectedTrackBlock != null)
     {
         m_selectedTrackBlock.StopBlinking();
         m_selectedTrackBlock = null;
         blinkTimer.Stop();
     }
 }
 public void StopBlinkingTest1()
 {
     TrackBlock block = null; // TODO: Initialize to an appropriate value
     double scale = 0F; // TODO: Initialize to an appropriate value
     TrackBlockGraphic target = new TrackBlockGraphic(block, scale); // TODO: Initialize to an appropriate value
     target.StopBlinking();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }