Ejemplo n.º 1
0
 public virtual void AddBodyPart(FormBodyPart part)
 {
     if (part == null)
     {
         return;
     }
     this.parts.AddItem(part);
 }
Ejemplo n.º 2
0
 public virtual void AddBodyPart(FormBodyPart part)
 {
     if (part == null)
     {
         return;
     }
     this.parts.AddItem(part);
 }
Ejemplo n.º 3
0
		public virtual void AddPart(FormBodyPart bodyPart)
		{
			this.multipart.AddBodyPart(bodyPart);
			this.dirty = true;
		}
Ejemplo n.º 4
0
 public virtual void AddPart(FormBodyPart bodyPart)
 {
     this.multipart.AddBodyPart(bodyPart);
     this.dirty = true;
 }