Ejemplo n.º 1
0
 public void Set(RGBT color)
 {
     this.rawValue = PropertyValue.ComposeRawValue(color);
 }
Ejemplo n.º 2
0
 public void Set(Enum value)
 {
     this.rawValue = PropertyValue.ComposeRawValue(value);
 }
Ejemplo n.º 3
0
 public void Set(PropertyType type, float value)
 {
     this.rawValue = PropertyValue.ComposeRawValue(type, value);
 }
Ejemplo n.º 4
0
 public void Set(LengthUnits lengthUnits, float value)
 {
     this.rawValue = PropertyValue.ComposeRawValue(lengthUnits, value);
 }
Ejemplo n.º 5
0
 public PropertyValue(LengthUnits lengthUnits, int value)
 {
     this.rawValue = PropertyValue.ComposeRawValue(lengthUnits, value);
 }
Ejemplo n.º 6
0
 public PropertyValue(PropertyType type, uint value)
 {
     this.rawValue = PropertyValue.ComposeRawValue(type, value);
 }
Ejemplo n.º 7
0
 public PropertyValue(bool value)
 {
     this.rawValue = PropertyValue.ComposeRawValue(value);
 }