Syntax

expression.GetCustomListContents(ListNum)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
ListNum Required Long The list number.

Return Value
Variant

Example

This example writes the elements of the first custom list in column one on Sheet1.

Visual Basic for Applications
listArray = Application.GetCustomListContents(1) For i = LBound(listArray, 1) To UBound(listArray, 1) Worksheets("sheet1").Cells(i, 1).Value = listArray(i) Next i
Get at a custom list? get custom list contents Get Custom List Contents Method getcustom getcustomlist GetCustomListContents GetCustomListContents Method Retrieve a custom list of names? Return the contents of my own list?

See also: