protected override bool isEqual(ClipEvent other)
 {
     if (other is ClipEventSound)
     {
         ClipEventSound f = other as ClipEventSound;
         return(String.Compare(this.sound_name, f.sound_name) == 0);
     }
     else
     {
         return(false);
     }
 }
 public ClipEventSound(int apiVersion, EventHandler handler, ClipEventSound basis)
     : base(apiVersion, handler, basis)
 {
     this.sound_name = basis.sound_name;
 }