Esempio n. 1
0
 public void ShareDataCollection(PlotChannelDataCollection value)
 {
     if (value == null)
     {
         throw new Exception("The shared Data Collection must not be null");
     }
     this.m_Data = value;
 }
Esempio n. 2
0
 public void UnShareDataCollection()
 {
     this.m_Data = this.m_DataOriginal;
 }
Esempio n. 3
0
 protected override void CreateObjects()
 {
     base.CreateObjects();
     this.m_Data         = new PlotChannelDataCollection(this);
     this.m_DataOriginal = this.m_Data;
 }