ColorBlend.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / ColorBlend.cs / 1 / ColorBlend.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

 
/*************************************************************************\ 
*
* Copyright (c) 1998-1999, Microsoft Corp.  All Rights Reserved. 
*
* Module Name:
*
*   ColorBlend.cs 
*
* Abstract: 
* 
*   Native GDI+ Color Blend structure.
* 
* Revision History:
*
*   9/22/1999 [....]
*       Created it. 
*
\**************************************************************************/ 
 
namespace System.Drawing.Drawing2D {
 
    using System.Diagnostics;

    using System;
    using System.Drawing; 

    ///  
    ///  
    ///    Defines arrays of colors and positions used
    ///    for interpolating color blending in a gradient. 
    /// 
    public sealed class ColorBlend {
        Color[] colors;
        float[] positions; 

        ///  
        ///  
        ///    Initializes a new instance of the  class.
        ///  
        public ColorBlend() {
            colors = new Color[1];
            positions = new float[1];
        } 

        ///  
        ///  
        ///    
        ///       Initializes a new instance of the  class with the specified number of 
        ///       colors and positions.
        ///    
        /// 
        public ColorBlend(int count) { 
            colors = new Color[count];
            positions = new float[count]; 
        } 

        ///  
        /// 
        ///    Represents an array of colors.
        /// 
        public Color[] Colors { 
            get {
                return colors; 
            } 
            set {
                colors = value; 
            }
        }

        ///  
        /// 
        ///    Represents the positions along a gradient 
        ///    line. 
        /// 
        public float[] Positions { 
            get {
                return positions;
            }
            set { 
                positions = value;
            } 
        } 

    } 

}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007. 
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK