Blend.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CommonUI / System / Drawing / Advanced / Blend.cs / 2 / Blend.cs

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

namespace System.Drawing.Drawing2D { 
 
    using System.Diagnostics;
 
    using System;
    using System.Drawing;

    ///  
    /// 
    ///     
    ///       Defines a blend pattern for a  
    ///       .
    ///     
    /// 
    public sealed class Blend {
        float[] factors;
        float[] positions; 

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

        ///  
        /// 
        ///    
        ///       Initializes a new instance of the 
        ///       class with the specified number of factors and positions. 
        ///    
        ///  
        public Blend(int count) { 
            factors = new float[count];
            positions = new float[count]; 
        }
        /// 
        /// 
        ///    Specifies an array of blend factors for the 
        ///    gradient.
        ///  
        public float[] Factors { 
            get {
                return factors; 
            }
            set {
                factors = value;
            } 
        }
 
        ///  
        /// 
        ///     
        ///       Specifies an array of blend positions for the gradient.
        ///    
        /// 
        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.
// 
//----------------------------------------------------------------------------- 

namespace System.Drawing.Drawing2D { 
 
    using System.Diagnostics;
 
    using System;
    using System.Drawing;

    ///  
    /// 
    ///     
    ///       Defines a blend pattern for a  
    ///       .
    ///     
    /// 
    public sealed class Blend {
        float[] factors;
        float[] positions; 

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

        ///  
        /// 
        ///    
        ///       Initializes a new instance of the 
        ///       class with the specified number of factors and positions. 
        ///    
        ///  
        public Blend(int count) { 
            factors = new float[count];
            positions = new float[count]; 
        }
        /// 
        /// 
        ///    Specifies an array of blend factors for the 
        ///    gradient.
        ///  
        public float[] Factors { 
            get {
                return factors; 
            }
            set {
                factors = value;
            } 
        }
 
        ///  
        /// 
        ///     
        ///       Specifies an array of blend positions for the gradient.
        ///    
        /// 
        public float[] Positions { 
            get {
                return positions; 
            } 
            set {
                positions = value; 
            }
        }
    }
 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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