Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FTableRowBase
Description
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.
| Name | OnPostDataImport |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/DataTable.h |
| Include Path | #include "Engine/DataTable.h" |
virtual void OnPostDataImport
(
const UDataTable * InDataTable,
const FName InRowName,
TArray < FString > & OutCollectedImportProblems
)
Parameters
| Name | Remarks |
|---|---|
| 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 |