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
Unmerges a range of cells. The range of cells is identified by one of its cells.
Example
<WL code>
MyXLSDocument is xlsDocument
 
// Unmerges the range of cells identified by cell B2
xlsUnmergeCell(MyXLSDocument, "B2")
Syntax

Unmerging a range of cells identified by the row and column of a given cell Hide the details

<Result> = xlsUnmergeCell(<Excel document> , <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 the name of a given cell Hide the details

<Result> = xlsUnmergeCell(<Excel document> , <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: 04/06/2023

Send a report | Local help