Navigation
API > API/Editor > API/Editor/ContentBrowserData > API/Editor/ContentBrowserData/UContentBrowserDataSource
Description
Attempt to move the given items to the given virtual path.
The default implementation of this will call MoveItem for each item. Override if you can provide a more efficient implementation.
| Name | BulkMoveItems |
| Type | function |
| Header File | /Engine/Source/Editor/ContentBrowserData/Public/ContentBrowserDataSource.h |
| Include Path | #include "ContentBrowserDataSource.h" |
| Source | /Engine/Source/Editor/ContentBrowserData/Private/ContentBrowserDataSource.cpp |
virtual bool BulkMoveItems
(
TArrayView < const FContentBrowserItemData > InItems,
const FName InDestPath
)
True if any items were moved, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| InItems | The items to move. |
| InDestPath | The virtual path that the item will be moved to. |