Animatroller.Framework.LogicalDevice.Event.PixelChangedEventArgs.PixelChangedEventArgs C# (CSharp) Method

PixelChangedEventArgs() public method

public PixelChangedEventArgs ( int channel, Color newColor, double newBrightness ) : System
channel int
newColor Color
newBrightness double
return System
        public PixelChangedEventArgs(int channel, Color newColor, double newBrightness)
        {
            this.Channel = channel;
            this.NewBrightness = newBrightness;
            this.NewColor = newColor;
        }
PixelChangedEventArgs