public void AddSlide(IMDSlide slide)
        {
            if (this.Sections.Count == 0)
              {
            this.StartNewSection(true);
              }

              this.Sections.Last().AddSlide(slide);
        }
Exemple #2
0
        public void AddSlide(IMDSlide slide)
        {
            if (this.Sections.Count == 0)
            {
                this.StartNewSection(true);
            }

            this.Sections.Last().AddSlide(slide);
        }
Exemple #3
0
 internal void AddSlide(IMDSlide slide)
 {
     this.Slides.Add(slide);
 }
Exemple #4
0
 internal void AddSlide(IMDSlide slide)
 {
     this.Slides.Add(slide);
 }