Esempio n. 1
0
        public static MedLabel CloneMedLabel(MedLabel source)
        {
            MedLabel target = new MedLabel();

            CloneMedLabel(source, target);
            return(target);
        }
Esempio n. 2
0
 public static void CloneMedLabel(MedLabel source, MedLabel target)
 {
     CloneControl(source, target);
     target.AutoSizeMode = source.AutoSizeMode;
 }