int nSheetCount=Ex.OlePropertyGet("Sheets").OlePropertyGet("Count");//工作表数
Ex.OlePropertyGet("Sheets", 1).OleProcedure("Select"); //选取第一张
Sh1 =
Ex.OlePropertyGet("ActiveSheet");
Sh1.OlePropertySet("Name", "Sheet的新名字");//改名
Ex.OlePropertyGet("Sheets", 1).OleFunction("Move",Ex.OlePropertyGet("Sheets", 3));//移动到第三张表之前