Inheritance: CssFeatureBase
Exemplo n.º 1
0
 private CssBoxShadowFeature(object newOwner, CssBoxShadowFeature inheritFrom)
     : base(newOwner)
 {
     this.HOffset        = inheritFrom.HOffset;
     this.VOffset        = inheritFrom.VOffset;
     this.BlurRadius     = inheritFrom.BlurRadius;
     this.ShadowColor    = inheritFrom.ShadowColor;
     this.SpreadDistance = inheritFrom.SpreadDistance;
     this.Inset          = inheritFrom.Inset;
 }
Exemplo n.º 2
0
 private CssBoxShadowFeature(object newOwner, CssBoxShadowFeature inheritFrom)
     : base(newOwner)
 {
     this.HOffset = inheritFrom.HOffset;
     this.VOffset = inheritFrom.VOffset;
     this.BlurRadius = inheritFrom.BlurRadius;
     this.ShadowColor = inheritFrom.ShadowColor;
     this.SpreadDistance = inheritFrom.SpreadDistance;
     this.Inset = inheritFrom.Inset;
 }