Hi John,
Currently the worksheetpage contains only one worksheet and so there is not much use for worksheet name property.
You could get to the page from the sheet and rename, with code such as:
Worksheet wks = Project.ActiveLayer();
string name = "myName";
wks.GetPage().Rename(name);
Easwar
OriginLab