Exemple #1
0
 /// <summary>
 /// Default constructor for QsysEventArgs.
 /// </summary>
 /// <param name="eventID">The event ID that is associated with the event.</param>
 /// <param name="controlName">The control that has triggered the event.</param>
 /// <param name="booleanValue">Boolean value of the event.</param>
 /// <param name="integerValue">Double value of the event.</param>
 /// <param name="stringValue">String value of the event.</param>
 public QsysEventsArgs(eQscEventIds eventID, string controlName, bool booleanValue, double numberValue, string stringValue)
 {
     this.EventID      = eventID;
     this.ControlName  = controlName;
     this.BooleanValue = booleanValue;
     this.NumberValue  = numberValue;
     this.StringValue  = stringValue;
 }
Exemple #2
0
 /// <summary>
 /// Default constructor for QsysEventArgs.
 /// </summary>
 /// <param name="eventID">The event ID that is associated with the event.</param>
 /// <param name="controlName">The control that has triggered the event.</param>
 /// <param name="booleanValue">Boolean value of the event.</param>
 /// <param name="integerValue">Integer value of the event.</param>
 /// <param name="stringValue">String value of the event.</param>
 public QsysEventsArgs(eQscEventIds eventID, string controlName, bool booleanValue, int integerValue, string stringValue, List <ListBoxChoice> listValue)
 {
     this.EventID      = eventID;
     this.ControlName  = controlName;
     this.BooleanValue = booleanValue;
     this.IntegerValue = integerValue;
     this.StringValue  = stringValue;
     this.ListValue    = listValue;
 }