Okay. Then assuming that you want to measure distance between PlayerCharacter and SpotLightPicker the correct usage would be:
ActorDistance = PlayerCharacter->GetDistanceTo(SpotLightPicker);
Or:
ActorDistance = SpotLightPicker->GetDistanceTo(PlayerCharacter);
Doesn’t really matter which one.
Hope this helps. :]