Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.41 KB

Project.Application.EditClear.md

File metadata and controls

54 lines (34 loc) · 1.41 KB
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Application.EditClear method (Project)
vbapj.chm205
vbapj.chm205
project-server
Project.Application.EditClear
0f87ca1c-c87c-774a-e8dd-2f4d29a40e28
06/08/2017
medium

Application.EditClear method (Project)

Clears the selected cells.

Syntax

expression. EditClear( _Contents_, _Formats_, _Notes_, _Hyperlinks_ )

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Contents Optional Boolean True if the contents of the selected cells are cleared. The default value is True.
Formats Optional Boolean True if the formats of the selected cells are cleared. The default value is False.
Notes Optional Boolean True if the notes of the assignment, resource, or task in the selected cells are cleared. The default value is False.
Hyperlinks Optional Boolean True if the hyperlinks associated with the selected cells are removed. The default value is False.

Return value

Boolean

Example

The following example clears the contents, formats, and notes of the selected cells.

Sub ClearAll() 
 EditClear True, True, True 
End Sub

[!includeSupport and feedback]