Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/FEditorFileUtils
Enum used for prompt returns
| Name | EPromptReturnCode |
| Type | enum |
| Header File | /Engine/Source/Editor/UnrealEd/Public/FileHelpers.h |
| Include Path | #include "FileHelpers.h" |
Syntax
enum EPromptReturnCode
{
PR_Success,
PR_Failure,
PR_Declined,
PR_Cancelled,
}
Values
| Name | Remarks |
|---|---|
| PR_Success | |
| PR_Failure | The user has answered in the affirmative to all prompts, and execution succeeded |
| PR_Declined | The user has answered in the affirmative to prompts, but an operation(s) has failed during execution |
| PR_Cancelled | The user has declined out of the prompt; the caller should continue whatever it was doing The user has cancelled out of a prompt; the caller should abort whatever it was doing |