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