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)

Initializes a new instance of the TaskColumnEventArgs class.

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

Gets the TaskColumn for which this event was raised.

public TaskColumn Column { get; }

Property Value

TaskColumn:

The TaskColumn for which this event was raised.

SourceIndex

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

public int SourceIndex { get; }

Property Value

int:

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

TargetIndex

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

public int TargetIndex { get; }

Property Value

int:

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

Inherited Members