Thanks guys.
VoG: VBA's help says this about the "Row" property:
"Returns the number of the first row of the first area in the range."
Emphasis added. Why specify the "first area"? Why not just say "first row in the range"?
Sub test()
Set rng = Range("A10:C20,F5:G10")
Debug.Print rng.Row
End Sub