Esempio n. 1
0
 public Shape(Stencil stencil)
 {
     _stencil = stencil;
 }
Esempio n. 2
0
 public void RemoveStencil(Stencil stencil)
 {
     System.Diagnostics.Debug.Assert(_stencils.Contains(stencil) == true, "Removing not added object.");
     _stencils.Remove(stencil);
 }
Esempio n. 3
0
 public void SetSelectedStencilsFromList(List<Stencil> stencils)
 {
     Stencil[] array = new Stencil[stencils.Count];
     stencils.CopyTo(array);
     SelectedStencils = array;
 }
 public LabelShape(Stencil stencil)
     : base(stencil)
 {
 }
Esempio n. 5
0
 public void AddStencil(Stencil stencil)
 {
     System.Diagnostics.Debug.Assert(_stencils.Contains(stencil) == false, "Adding objectItem more than 1 time.");
     _stencils.Add(stencil);
 }
Esempio n. 6
0
 public void RemoveStencil(Stencil stencil)
 {
     System.Diagnostics.Debug.Assert(_stencils.Contains(stencil) == true, "Removing not added object.");
     _stencils.Remove(stencil);
 }
Esempio n. 7
0
 public Shape(Stencil stencil)
 {
     _stencil = stencil;
 }
Esempio n. 8
0
 public void AddStencil(Stencil stencil)
 {
     System.Diagnostics.Debug.Assert(_stencils.Contains(stencil) == false, "Adding objectItem more than 1 time.");
     _stencils.Add(stencil);
 }
Esempio n. 9
0
 public void SetSelectedStencilsFromList(List <Stencil> stencils)
 {
     Stencil[] array = new Stencil[stencils.Count];
     stencils.CopyTo(array);
     SelectedStencils = array;
 }
Esempio n. 10
0
 public LabelShape(Stencil stencil) : base(stencil)
 {
 }
Esempio n. 11
0
 public RectangleShape(Stencil stencil) : base(stencil)
 {
 }
 public RectangleShape(Stencil stencil)
     : base(stencil)
 {
 }