/// <summary>
 /// Kopieren dieses Effekts.
 /// </summary>
 public override ImageEffect Copy()
 {
     ScalingEffect newEffect = new ScalingEffect();
     newEffect.ActionType = this.ActionType;
     newEffect.Direction = this.Direction;
     newEffect.IsActive = this.IsActive;
     newEffect.ScalingPerMillisecond = this.ScalingPerMillisecond;
     newEffect.StartImageScale = this.StartImageScale;
     newEffect.TotalScalingChange = this.TotalScalingChange;
     base.CopyEvents(newEffect);
     return newEffect;
 }