Version

ActualValuesLostWarning Event

Invoked when a change will cause actual values, such as ProjectTask.ActualStart and ProjectTask.ActualFinish to be lost on one or more tasks.
Syntax
'Declaration
 
Public Event ActualValuesLostWarning As EventHandler(Of ActualValuesLostWarningEventArgs)
public event EventHandler<ActualValuesLostWarningEventArgs> ActualValuesLostWarning
Event Data

The event handler receives an argument of type ActualValuesLostWarningEventArgs containing data related to this event. The following ActualValuesLostWarningEventArgs properties provide information specific to this event.

PropertyDescription
Action Returns or sets the action which should be used to resolve the warning.
Tasks Returns the collection of tasks which might have their actual values, such as ProjectTask.ActualStart and ProjectTask.ActualFinish, cleared.
Remarks

While the event is being fired, the tasks associated with the event will be locked and cannot be modified.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also