BucketSchedulerDataSourceView
Namespace: TagBites.WinSchedulers
Assembly: TagBites.WinSchedulers.dll
Represents the object storing data for TagBites.WinSchedulers.BucketScheduler.
public class BucketSchedulerDataSourceView
Properties
Columns
Gets a collection of columns.
public IList<object> Columns { get; }
Rows
Gets a collection of rows.
public IList<object> Rows { get; }
SelectedTasks
Gets the collection of selected tasks.
public IList<object> SelectedTasks { get; }
Methods
AddBucket(object)
Adds the bucket to the end of the bucket collection. Each bucket could be add only once.
public void AddBucket(object bucket)
Result Type: void
Parameters
Type | Name | |
---|---|---|
object | bucket | Object representing a bucket. |
AddBuckets(List<object>)
Adds the bucket collection to the end of the bucket collection. Each bucket could be add only once.
public void AddBuckets(List<object> buckets)
Result Type: void
Parameters
Type | Name | |
---|---|---|
List<object> | buckets | A representing a bucket collection. |
AddTask(object)
Adds the task to the end of the task collection. Each task could be add only once.
public void AddTask(object task)
Result Type: void
Parameters
Type | Name | |
---|---|---|
object | task | Object representing a task. |
AddTasks(List<object>)
Adds the task to the end of the task collection. Each task could be add only once.
public void AddTasks(List<object> tasks)
Result Type: void
Parameters
Type | Name | |
---|---|---|
List<object> | tasks | A representing a task collection. |