Пример #1
0
 public object Clone()
 {
     Interaction i = new Interaction();
     i.ToolTipText = this.ToolTipText;
     i.Type = this.Type;
     i.Condition = this.Condition;
     i.Action = this.Action;
     i.CustomItem = this.CustomItem;
     return i;
 }
Пример #2
0
 public static Interaction Default()
 {
     Interaction i = new Interaction();
     i.ToolTipText = "";
     i.Action = "--* Interaction";
     return i;
 }