Move a folha para outra localização no Livro
Sintaxe
| Before |
TXLSWorksheet. A folha antes da qual a folha movida será colocada. Não pode especificar Before se especificar After |
| After |
TXLSWorksheet. A folha depois da qual a folha movida será colocada. Não pode especificar After se especificar Before |
| lcid |
Integer. O ID de localidade |
Exemplo
This example moves the first sheet after the third sheet in the Workbook
Workbook.Sheets[1].Move(nil, Workbook.Sheets[3]);
This example moves the second sheet before the first sheet in the Workbook