Skip to content

Latest commit

 

History

History
56 lines (33 loc) · 1.05 KB

Project.Application.BaseCalendarDelete.md

File metadata and controls

56 lines (33 loc) · 1.05 KB
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Application.BaseCalendarDelete method (Project)
vbapj.chm619
vbapj.chm619
project-server
Project.Application.BaseCalendarDelete
f9583bd7-6ddb-7115-b7ca-c0e4e8b033e1
06/08/2017
medium

Application.BaseCalendarDelete method (Project)

Deletes a base calendar.

Syntax

expression. BaseCalendarDelete( _Name_ )

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Name Required String String. The name of the base calendar to delete.

Return value

Boolean

Example

The following example deletes the base calendar entered by the user.

Sub DeleteCalendar() 
 
 Dim CalendarName As String 
 
 CalendarName = InputBox$("Enter name of base calendar to delete:") 
 BaseCalendarDelete Name:=CalendarName 
 
End Sub

[!includeSupport and feedback]