FECipherVit.CardPic.SetHorizontal C# (CSharp) Method

SetHorizontal() public method

public SetHorizontal ( ) : void
return void
        public void SetHorizontal()
        {
            Width = HEIGHT;
            Height = WIDTH;
            Image.RotateFlip(RotateFlipType.Rotate90FlipNone);
            Top += (HEIGHT - WIDTH) / 2;
            Left -= (HEIGHT - WIDTH) / 2;
            IsHorizontal = true;
        }