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