public void Add(MpeItemType type, string value)
        {
            MpeItem item = new MpeItem();

            item.Type  = type;
            item.Value = value;
            Add(item);
        }
Exemplo n.º 2
0
 public MpeItemCollection(MpeItemCollection items)
 {
   type = items.type;
   for (int i = 0; i < items.Count; i++)
   {
     Add(new MpeItem(items[i]));
   }
 }
 public MpeItemCollection(MpeItemCollection items)
 {
     type = items.type;
     for (int i = 0; i < items.Count; i++)
     {
         Add(new MpeItem(items[i]));
     }
 }
Exemplo n.º 4
0
 public void Add(MpeItemType type, string value)
 {
   MpeItem item = new MpeItem();
   item.Type = type;
   item.Value = value;
   Add(item);
 }
Exemplo n.º 5
0
 public MpeItemCollection()
 {
   type = MpeItemType.Text;
 }
Exemplo n.º 6
0
 public MpeItemEventArgs(MpeItemType existingType, MpeItemType newType)
 {
   this.existingType = existingType;
   this.newType = newType;
   cancelTypeChange = false;
 }
Exemplo n.º 7
0
 public MpeItem(MpeItem item)
 {
     text      = item.text;
     textValue = item.textValue;
     type      = item.type;
 }
Exemplo n.º 8
0
 public MpeItem()
 {
     text      = "";
     textValue = "";
     type      = MpeItemType.Text;
 }
 public MpeItemCollection()
 {
     type = MpeItemType.Text;
 }
 public MpeItemEventArgs(MpeItemType existingType, MpeItemType newType)
 {
     this.existingType = existingType;
     this.newType      = newType;
     cancelTypeChange  = false;
 }
Exemplo n.º 11
0
 public MpeItem(MpeItem item)
 {
   text = item.text;
   textValue = item.textValue;
   type = item.type;
 }
Exemplo n.º 12
0
 public MpeItem()
 {
   text = "";
   textValue = "";
   type = MpeItemType.Text;
 }