Choose your operating system:
Windows
macOS
Linux
| FTableRowBase::OnPostDataImport()
|
Module |
|
Header |
/Engine/Plugins/Experimental/CommonUI/Source/CommonUI/Public/CommonUITypes.h |
Include |
#include "CommonUITypes.h" |
Source |
/Engine/Plugins/Experimental/CommonUI/Source/CommonUI/Private/CommonUITypes.cpp |
virtual void OnPostDataImport
(
const UDataTable * InDataTable,
const FName InRowName,
TArray< FString > & OutCollectedImportProblems
)
Can be overridden by subclasses; Called whenever the owning data table is imported or re-imported. Allows for custom fix-ups, parsing, etc. after initial data is read in.
Parameter |
Description |
---|---|
InDataTable |
The data table that owns this row |
InRowName |
The name of the row we're performing fix-up on |
OutCollectedImportProblems |
List of problems accumulated during import; Can be added to via this method |