コード例 #1
0
 /// <summary>
 /// Sets the code start trigger.
 /// </summary>
 /// <param name="value">The trigger that activates a code start.</param>
 /// <returns>Returns a <see cref="Builder"/>.</returns>
 public Builder SetCodeStartTrigger(Switch value)
 {
     instance.codeStartTrigger = value;
     return(this);
 }
コード例 #2
0
 /// <summary>
 /// Sets the box trigger.
 /// </summary>
 /// <param name="value">The trigger that causes the use of ghost boxing
 /// and increments the box number.</param>
 /// <returns>Returns a <see cref="Builder"/>.</returns>
 public Builder SetBoxTrigger(Switch value)
 {
     instance.boxTrigger = value;
     return(this);
 }
コード例 #3
0
 /// <summary>
 /// Sets the group start trigger.
 /// </summary>
 /// <param name="value">The trigger that activates a group start.</param>
 /// <returns>Returns a <see cref="Builder"/>.</returns>
 public Builder SetGroupStartTrigger(Switch value)
 {
     instance.groupStartTrigger = value;
     return(this);
 }