Skip to content
Auto
Products

BucketSchedulerDataSourceView

Namespace: TagBites.WinSchedulers
Assembly: TagBites.WinSchedulers.dll
Product: TagBites.WinSchedulers v. 1.3.8

Represents the object storing data for BucketScheduler.

public class BucketSchedulerDataSourceView

Inheritance: object → BucketSchedulerDataSourceView

Gets a collection of columns.

public IList<object> Columns { get; }

IList<object>

An IList representing the collection of columns.

Gets a collection of rows.

public IList<object> Rows { get; }

IList<object>

An IList representing the collection of rows.

Gets the collection of selected tasks.

public IList<object> SelectedTasks { get; }

IList<object>

An IList representing the collection of selected tasks.

Adds the bucket to the end of the bucket collection. Each bucket could be add only once.

public void AddBucket(object bucket)
  • bucket object
    Object representing a bucket.

Adds the bucket collection to the end of the bucket collection. Each bucket could be add only once.

public void AddBuckets(List<object> buckets)

Adds a line after specified resource with specified color.

public void AddResourceSeparator(object resource, Color color)

Adds the task to the end of the task collection. Each task could be add only once.

public void AddTask(object task)
  • task object
    Object representing a task.

Adds the task to the end of the task collection. Each task could be add only once.

public void AddTasks(List<object> tasks)