RGBColor.R C# (CSharp) Method

R() public static method

public static R ( uint colorref ) : byte
colorref uint
return byte
	public static byte R(uint colorref)
	{
		return (byte)(colorref & 0xff);
	}