Application.BaselineClear method (Project)
Clears the baseline data from the baseline fields or clears the data from a Start n / Finish n pair of dates.
Syntax
expression. BaselineClear
( _All_
, _From_
)
expression A variable that represents an Application object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
All | Optional | Boolean | True if all tasks in the active project should be cleared. False if only the selected tasks should be cleared. The default value is True. |
From | Optional | Long | The fields to be cleared. The default value is pjIntoBaseline. Can be one of the PjSaveBaselineTo constants. |
Return value
Boolean
Example
The following example first saves the baseline and then clears it.
Sub Baseline_Clear()
Dim Result As Boolean
'Save baseline
Result = BaselineSave(True)
'Clear baseline
Result = BaselineClear (True)
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.