7 references to Value
System.Drawing.Primitives (7)
System\Drawing\Color.cs (7)
364public byte R => unchecked((byte)(Value >> ARGBRedShift)); 366public byte G => unchecked((byte)(Value >> ARGBGreenShift)); 368public byte B => unchecked((byte)(Value >> ARGBBlueShift)); 370public byte A => unchecked((byte)(Value >> ARGBAlphaShift)); 466(uint)baseColor.Value & ~ARGBAlphaMask 488uint value = (uint)Value; 568public int ToArgb() => unchecked((int)Value);