RGBColor.R16 C# (CSharp) Method

R16() public static method

public static R16 ( uint colorref ) : ushort
colorref uint
return ushort
	public static ushort R16(uint colorref)
	{
		ushort aShort = (ushort)((colorref & 0xff) << 8);
		return aShort;
	}

Same methods

RGBColor::R16 ( uint c0, uint c1 ) : ushort