Share via


CustomViews.Item Method

Excel Developer Reference

Returns a single object from a collection.

Syntax

expression.Item(Index)

expression   A variable that represents a CustomViews object.

Parameters

Name Required/Optional Data Type Description
ViewName Required Variant The name or index number for the object.

Return Value
A CustomView object contained by the collection.

Example

This example includes print settings in the custom view named Current Inventory.

Visual Basic for Applications
  ThisWorkbook.CustomViews.Item("Current Inventory") _
    .PrintSettings = True

See Also