Skip to main content
A newer version of this page is available. .

LayoutGroup.TabContentCacheMode Property

Gets or sets whether tab contents are cached all at once when the group is displayed, each tab content is cached when the tab is selected, or tab contents are not cached. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v19.1.dll

Declaration

public TabContentCacheMode TabContentCacheMode { get; set; }

Property Value

Type Description
TabContentCacheMode

A TabContentCacheMode enumeration value that specifies how tab contents are cached. The default is None.

Available values:

Name Description
None

Tabs caching is disabled.

CacheAllTabs

All the DXTabControl‘s tabs are simultaneously cached after the DXTabControl is loaded and shown.

CacheTabsOnSelecting

DXTabControl‘s tabs are cached only after they have been selected by an end-user.

See Also