ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Word Processing functions / Types of variables
  • Properties specific to docCell variables
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
The docCell type is used to define the advanced characteristics of a table cell in a Word Processing document. You can define and change the characteristics of this cell using different WLanguage properties.
CAUTION: This type must not be used directly. It must only be used:
For more details on the different types related to Word Processing documents, see Types associated with Word processors.
Example
// Retrieve the document
MyDocument is Document <- WP_Table
// Retrieve the table, here the paragraph 1
pTable is docParagraph <- MyDocument.Paragraph[1]

// Browses the rows
FOR i = 1 _TO_ pTable.Table.Rows.Count
// Browses the columns
FOR j = 1 _TO_ pTable.Table.Columns.Count
Trace("Value of cell [[%i%]][[%j%]] = " + 
pTable.Table.Cells[i, j].Content.Text)
END
END
Remarks

Properties specific to docCell variables

The following properties can be used to handle docCell variables:
Property nameType usedEffect
PageLayout.BorderBorder variableCharacteristics of the border used for the paragraph.
Remark: rounded corners are not supported.
PageLayout.BackgroundPatternBackground variableCharacteristics of the cell background.
PageLayout.BackgroundColorIntegerCell background color. This color can correspond to:
ColSpanIntegerIndex of the current column.
ColumnIndexIntegerIndex of the current column.
ContentdocFragment variableContent of a table cell.
PageLayoutLayout of the current cell.
RowIndexIntegerIndex of the current row.
RowSpanIntegerIndex of the current row.
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/09/2024

Send a report | Local help