Esempio n. 1
0
        public Object clone()
        {
            UstPortamento ret   = new UstPortamento();
            int           count = Points.Count;

            for (int i = 0; i < count; i++)
            {
                ret.Points.Add(Points[i]);
            }
            ret.Start = Start;
            ret.mIsUnknownIntSpecified = mIsUnknownIntSpecified;
            ret.mUnknownInt            = mUnknownInt;
            return(ret);
        }
Esempio n. 2
0
 public void setPortamento(UstPortamento value)
 {
     mPortamento       = value;
     mIsPortamentoSpec = true;
 }