/// <summary>
 /// Sets the radiobutton aligment.
 /// </summary>
 /// <param name="orientation">The aligment.</param>
 /// <returns>The fluent configurator object.</returns>
 public FWRadioControl Orientation(FWOrientation orientation)
 {
     _orientation = orientation;
     return(this);
 }
 /// <summary>
 /// Sets the checkbox orientation.
 /// </summary>
 /// <param name="orientation">The orientation option.</param>
 /// <returns>The fluent configurator object.</returns>
 public FWCheckboxControl Orientation(FWOrientation orientation)
 {
     _orientation = orientation;
     return(this);
 }