|
|
|
|
|
<Spreadsheet>.DeleteRow (Function) In french: <Tableur>.SupprimeLigne
Warning
From version 28, Spreadsheet.DeleteLine is kept for backward compatibility. This function is replaced by <Spreadsheet>.DeleteRow.
Deletes a row from a Spreadsheet control. // Deletes the rows 2 and 3 PSHEET_MySpreadsheet.DeleteRow(2) PSHEET_MySpreadsheet.DeleteRow(3)
Syntax
<Spreadsheet control>.DeleteRow(<Row> [, <Worksheet>])
<Spreadsheet control>: Control name Name of the Spreadsheet control to be used. <Row>: Integer Number of the row to delete, for example: 1. The row numbers start from 1. The function has no effect if this parameter is not valid. <Worksheet>: Optional integer Number of the worksheet to use. If this parameter is not specified, the current worksheet is used. The function has no effect if this parameter is not valid. Remarks After the function execution: - the rows found below the deleted row are shifted to the top.
- the content of expressions is renamed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|