Bloom.CollectionTab.FlyingImage.Go C# (CSharp) Method

Go() public method

public Go ( string word, Point from, Point to ) : void
word string
from Point
to Point
return void
        public void Go(string word, Point from, Point to)
        {
            _from = from;
                _to = to;

                Text = word;
                Location = from;
                Visible = true;
                BringToFront();
                _animator.Start();
        }