C++ Variables to Display under Blueprints - "My Blueprints"

When I create a variable in C++ like this:


	UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "UserControl")
		float magnitude;


How do I get this variable to appear in a blueprint under the “My Blueprints” Variable section? It appears the Variables can only be found by a Blueprint user by typing searching for the variable if he knows the name of the variable. Is that the only way?



UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "My Blueprints")
		float magnitude;


Variables will appear in the blueprint panel (like the details panel), but I believe the node area will only display actual node functions. However you can always drag the variables off the blueprint panel and into the node area.