Link Errors: .CPP and .H files that come with the Pre-Compiled engine don't match.

I think the problem you’re seeing is because that particular function isn’t exported from the UMG DLL in editor builds, even though it’s declared in the header (I expect that it’ll compile fine if you build a non-editor version of your game). The class is marked with the MinimalAPI keyword, which only exports the basic functions needed to interrogate it as a UObject.

I’ll forward on your request to have it exported.