You would just get the RecipeButton1.Text property value.
In this example, it displays it in a label when the button is clicked:
Private Sub RecipeButton1_Click(sender As Object, e As EventArgs) Handles RecipeButton1.Click
Me.Label9.Text = Me.RecipeButton1.Text
End Sub