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