BucketSchedulerDataSourceView
Namespace: TagBites.WinSchedulers
Assembly: TagBites.WinSchedulers.dll
Product: TagBites.WinSchedulers v. 1.3.8
Represents the object storing data for BucketScheduler.
public class BucketSchedulerDataSourceViewInheritance: object → BucketSchedulerDataSourceView
Properties
Section titled “Properties”Columns
Section titled “Columns”Gets a collection of columns.
public IList<object> Columns { get; }Property Value
Section titled “Property Value”An IList representing the collection of columns.
Gets a collection of rows.
public IList<object> Rows { get; }Property Value
Section titled “Property Value”An IList representing the collection of rows.
SelectedTasks
Section titled “SelectedTasks”Gets the collection of selected tasks.
public IList<object> SelectedTasks { get; }Property Value
Section titled “Property Value”An IList representing the collection of selected tasks.
Methods
Section titled “Methods”AddBucket(object)
Section titled “AddBucket(object)”Adds the bucket to the end of the bucket collection. Each bucket could be add only once.
public void AddBucket(object bucket)Parameters
Section titled “Parameters”bucketobject
Object representing a bucket.
AddBuckets(List<object>)
Section titled “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)Parameters
Section titled “Parameters”AddResourceSeparator(object, Color)
Section titled “AddResourceSeparator(object, Color)”Adds a line after specified resource with specified color.
public void AddResourceSeparator(object resource, Color color)Parameters
Section titled “Parameters”resourceobject
Object representing resource.colorColor
A Color representing color of a separator.
AddTask(object)
Section titled “AddTask(object)”Adds the task to the end of the task collection. Each task could be add only once.
public void AddTask(object task)Parameters
Section titled “Parameters”taskobject
Object representing a task.
AddTasks(List<object>)
Section titled “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)