BlinkStickDotNet.SendColorEventArgs.SendColorEventArgs C# (CSharp) Méthode

SendColorEventArgs() public méthode

public SendColorEventArgs ( byte channel, byte index, byte r, byte g, byte b ) : System
channel byte
index byte
r byte
g byte
b byte
Résultat System
        public SendColorEventArgs(byte channel, byte index, byte r, byte g, byte b)
        {
            this.Channel = channel;
            this.Index = index;
            this.R = r;
            this.G = g;
            this.B = b;
            this.SendToDevice = true;
        }
    }
SendColorEventArgs