|
|
|
|
|
<xlsDocument variable>.UnmergeCell (Function) In french: <Variable xlsDocument>.DéfusionneCellule Unmerges a range of cells. The range of cells is identified by one of its cells. MyXLSDocument is xlsDocument
MyXLSDocument.UnmergeCell("B2")
Syntax
Unmerging a range of cells identified by row and column Hide the details
<Result> = <Excel document>.UnmergeCell(<Cell row> , <Cell column>)
<Result>: Boolean - True if the range of cells was unmerged.
- False otherwise.
<Excel document>: xlsDocument variable Name of the variable of type xlsDocument to be used. <Cell row>: Integer Row number of one of the cells in the range of cells to unmerge. <Cell column>: Integer Column number of one of the cells in the range of cells to unmerge.
Unmerging a range of cells identified by name Hide the details
<Result> = <Excel document>.UnmergeCell(<Cell>)
<Result>: Boolean - True if the range of cells was unmerged.
- False otherwise.
<Excel document>: xlsDocument variable Name of the variable of type xlsDocument to be used. <Cell>: Character string Cell in the range of cells to unmerge. This parameter has the following syntax: <Column letter><Row number>. For example: "A32".
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|