Paint.ToolBox.TranslateToolboxLayoutColor C# (CSharp) 메소드

TranslateToolboxLayoutColor() 개인적인 메소드

Translates the toolbox layout color type to a Color.
private TranslateToolboxLayoutColor ( ColorType color ) : Color
color Paint.ToolboxLayout.ColorType The converted Color object.
리턴 Color
        private Color TranslateToolboxLayoutColor(ColorType color)
        {
            return new Color(color.Red, color.Green, color.Blue);
        }