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