API Documentation

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; }

Result Type: IList<object>

Rows

Gets a collection of rows.

public IList<object> Rows { get; }

Result Type: IList<object>

SelectedTasks

Gets the collection of selected tasks.

public IList<object> SelectedTasks { get; }

Result Type: IList<object>

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

TypeName
objectbucketObject 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

TypeName
List<object>bucketsA 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

TypeName
objecttaskObject 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

TypeName
List<object>tasksA representing a task collection.