Application.BaselineClear Method (Project)

Clears the baseline data from the baseline fields or clears the data from a Startn/Finishn 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