Share via


Application.DeleteCustomList Method (Excel)

Deletes a custom list.

Syntax

.DeleteCustomList(ListNum)

A variable that represents an Application object.

Parameters

Name

Required/Optional

Data Type

Description

ListNum

필수

Long

The custom list number. This number must be greater than or equal to 5 (Microsoft Excel has four built-in custom lists that cannot be deleted).

Remarks

This method generates an error if the list number is less than 5 or if there's no matching custom list.

Example

This example deletes a custom list.

n = Application.GetCustomListNum(Array("cogs", "sprockets", _ 
 "widgets", "gizmos")) 
Application.DeleteCustomList n

참고 항목

개념

Application Object

Application Object Members