In This Article

TaskColumnEventArgs Class

Provides event arguments for TaskColumn-related events.

public class TaskColumnEventArgs : CancelRoutedEventArgs
Inheritance:
object EventArgs RoutedEventArgs CancelRoutedEventArgs object

Constructors

TaskColumnEventArgs(TaskColumn, int, int)

Provides event arguments for TaskColumn-related events.

public TaskColumnEventArgs(TaskColumn column, int sourceIndex, int targetIndex)
Parameter Type Description
column TaskColumn

The TaskColumn for which this event was raised.

sourceIndex int

The original location index of the column, if this event is related to a drag.

targetIndex int

The dropped location index of the column, if this event is related to a drag.

Properties

Column

The TaskColumn for which this event was raised.

public TaskColumn Column { get; }

Property Value

TaskColumn

SourceIndex

The original location index of the column, if this event is related to a drag.

public int SourceIndex { get; }

Property Value

int

TargetIndex

The dropped location index of the column, if this event is related to a drag.

public int TargetIndex { get; }

Property Value

int

Inherited Members

Extension Methods