ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV and WEBDEV 28 feature!
This content has been translated automatically.  Click here  to view the French version.
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Removes the merge from the specified cell.
Example
MonDocumentXLS is xlsDocument
 
// Défusionne la cellule B2
MonDocumentXLS.UnmergeCell("B2")
Syntax

Unmerge multiple cells: cell identified by its row and column Hide the details

<Result> = <Document Excel>.UnmergeCell(<Row cells> , <Cell column>)
<Result>: Boolean
  • True if the cell has been defused.
  • False otherwise.
<Document Excel>: xlsDocument variable
Name of the variable of type xlsDocument to be used.
<Row cells>: entier
row number of one of the cells in the range of cells to be unmerged.
<Cell column>: entier
Column number of one of the cells in the range of cells to be unmerged.

Unmerge multiple cells: cell identified by its name Hide the details

<Result> = <Document Excel>.UnmergeCell(<Cell>)
<Result>: Boolean
  • True if the cell has been defused.
  • False otherwise.
<Document Excel>: xlsDocument variable
Name of the variable of type xlsDocument to be used.
<Cell>: Character string
Name of one of the cells in the range of cells to be unmerged. This parameter has the following format: <Column letter><Row number>. For example: "A32".
Component: wd280xls.dll
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment