Beyond_Beyaan.BBUniStretchableImage.Draw C# (CSharp) Метод

Draw() публичный Метод

public Draw ( System color, byte alpha ) : void
color System
alpha byte
Результат void
        public void Draw(System.Drawing.Color color, byte alpha)
        {
            sections[0].Draw(x, y, 1, 1, System.Drawing.Color.FromArgb(alpha, color));
            if (isHorizontal)
            {
                sections[1].Draw(x + mainLength, y, stretchAmount / sections[1].Width, 1, System.Drawing.Color.FromArgb(alpha, color));
                sections[2].Draw(x + mainLength + stretchAmount, y, 1, 1, System.Drawing.Color.FromArgb(alpha, color));
            }
            else
            {
                sections[1].Draw(x, y + mainLength, 1, stretchAmount / sections[1].Height, System.Drawing.Color.FromArgb(alpha, color));
                sections[2].Draw(x, y + mainLength + stretchAmount, 1, 1, System.Drawing.Color.FromArgb(alpha, color));
            }
        }

Same methods

BBUniStretchableImage::Draw ( ) : void
BBUniStretchableImage::Draw ( byte alpha ) : void