ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / XLS file functions
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
<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.
Example
MyXLSDocument is xlsDocument
 
// Unmerges the range of cells identified by cell B2
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
Name of one of the cells in the range of cells to unmerge. This parameter has the following syntax: <Column letter><Row number>. For example: "A32".
Component: wd290xls.dll
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help