Exemple #1
0
 public StyleObject(BorderStyle value)
 {
     this.Type  = StyleObjectType.BorderStyle;
     this.value = value;
 }
Exemple #2
0
 public StyleObject(IImage value)
 {
     this.Type  = StyleObjectType.Image;
     this.value = value;
 }
Exemple #3
0
 public StyleObject(Color value)
 {
     this.Type  = StyleObjectType.Color;
     this.value = value;
 }
Exemple #4
0
 public StyleObject(double value)
 {
     this.Type  = StyleObjectType.Number;
     this.value = value;
 }
Exemple #5
0
 public StyleObject(string value)
 {
     this.Type  = StyleObjectType.String;
     this.value = value;
 }
Exemple #6
0
 public StyleObject(StyleObject value)
 {
     this.Type  = value.Type;
     this.value = value.value;
 }