This version of Unity is unsupported.

BaseVerticalCollectionView.virtualizationMethod

public UIElements.CollectionVirtualizationMethod virtualizationMethod;

Description

The virtualization method to use for this collection when a scroll bar is visible. Takes a value from the CollectionVirtualizationMethod enum.

The default value is FixedHeight. When using fixed height, specify the fixedItemHeight property. Fixed height is more performant but offers less flexibility on content. When using DynamicHeight, the collection will wait for the actual height to be computed. Dynamic height is more flexible but less performant.