public void Set(object target, string val) { ColorFaderAffector affector = target as ColorFaderAffector; affector.AlphaAdjust = StringConverter.ParseFloat(val); }
public string Get(object target) { ColorFaderAffector affector = target as ColorFaderAffector; return(StringConverter.ToString(affector.AlphaAdjust)); }