CTCOfficeGUI.TrainGraphic.Blink C# (CSharp) Méthode

Blink() public méthode

Causes the graphic to "blink" to show as selected
public Blink ( ) : void
Résultat void
        public void Blink()
        {
            this.Visible = !this.Visible; //Toggle visibility
        }

Usage Example

 public void BlinkTest1()
 {
     ITrain train = null; // TODO: Initialize to an appropriate value
     TrainGraphic target = new TrainGraphic(train); // TODO: Initialize to an appropriate value
     target.Blink();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
All Usage Examples Of CTCOfficeGUI.TrainGraphic::Blink