Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 874 Bytes

Project.Task.Flag4.md

File metadata and controls

44 lines (28 loc) · 874 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Task.Flag4 property (Project)
project-server
Project.Task.Flag4
8fe98757-39f1-2ca8-237f-6675fec7bd99
06/08/2017
medium

Task.Flag4 property (Project)

Gets or sets the value of a task flag custom field. Read/write Variant.

Syntax

expression. Flag4

expression A variable that represents a Task object.

Example

The following example deletes all the tasks that have the Flag1 set to True.

Sub DeleteNonEssentialTasks() 
 
 Dim T As Task ' Task object used in For Each loop 
 
 ' Delete nonessential tasks in the active project. 
 For Each T In ActiveProject.Tasks 
 If Not (T Is Nothing) Then 
 If T.Flag1 = True Then T.Delete 
 End If 
 Next T 
 
End Sub

[!includeSupport and feedback]