Example #1
0
        /// <summary>
        /// Sets the orientation of the group headers
        /// </summary>
        /// <param name="orientation">The orientation</param>
        public TViewBuilder Groups(SchedulerGroupOrientation orientation)
        {
            view.Group.Orientation = orientation;

            return((TViewBuilder)this);
        }
Example #2
0
 /// <summary>
 /// The orientation of the group headers.
 /// </summary>
 /// <param name="value">The orientation</param>        
 public SchedulerGroupBuilder Orientation(SchedulerGroupOrientation value)
 {
     settings.Orientation = value;
     return this;
 }
Example #3
0
 /// <summary>
 /// The orientation of the group headers.
 /// </summary>
 /// <param name="value">The orientation</param>
 public SchedulerGroupBuilder <TModel> Orientation(SchedulerGroupOrientation value)
 {
     container.Group.Orientation = value;
     return(this);
 }
Example #4
0
 /// <summary>
 /// The orientation of the group headers.
 /// </summary>
 /// <param name="value">The orientation</param>
 public SchedulerGroupBuilder Orientation(SchedulerGroupOrientation value)
 {
     settings.Orientation = value;
     return(this);
 }