private static uint ComposeRawValue(RGBT color) { return(GetRawType(PropertyType.Color) | ((uint)color.RawValue & ValueMask)); }
public void Set(RGBT color) { this.rawValue = ComposeRawValue(color); }
private static uint ComposeRawValue(RGBT color) { return(PropertyValue.GetRawType(PropertyType.Color) | (color.RawValue & 134217727U)); }
public PropertyValue(RGBT color) { this.rawValue = ComposeRawValue(color); }
public void Set(RGBT color) { this.rawValue = PropertyValue.ComposeRawValue(color); }