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