|
|
|
|
|
- Properties specific to xlsCell variables
xlsCell (Variable type) In french: xlsCellule
An xlsCell variable is used to describe and modify a cell in an Excel document. This type of variable is used: Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
New in version 2025
sExcelFile is string
sExcelFile = fSelect("", "", "Select an Excel file...", "Excel" + ...
TAB + "*.xlsx" + CR + "All files (*.*)" + TAB + "*.*", "*.xlsx")
IF sExcelFile = "" THEN RETURN
MyDocument is xlsDocument
MyDocument = xlsOpen(sExcelFile)
Cell is xlsCell
Cell = "WINDEV is incredible!"
Cell.BackgroundColor = LightRed
MyDocument..Cell[6,"A"] = Cell
xlsSave(MyDocument)
xlsClose(MyDocument)
Properties Properties specific to xlsCell variables The following properties can be used to handle xlsCell variables: | | | Name | Type used | Effect |
---|
AlignmentH | Integer constant | Horizontal cell alignment. The possible values are as follows:- haCenter: Aligns to the center.
- haRight: Aligns to the right.
- haLeft: Aligns to the left.
| AlignmentV | Integer constant | Vertical cell alignment. The possible values are as follows:- vaTop: Aligns to the top.
- vaMiddle: Aligns to the middle.
- vaBottom: Aligns to the bottom.
| Border | Border variable | Characteristics of cell border. | BackgroundColor | Integer or Integer constant | Cell background color. This color can correspond to: Before version 24, this property was named "BackgroundColor". | Formula | Character string | Cell formulas. Caution: Changing the formula in a cell does not automatically recalculate the formulas in the workbook. You need to call xlsRecalculateAll after changing the formula of one or more cells to update the values of the cells that contain a formula. This property can only be used on XLSX documents (it is not available for XLS documents). | Mask | Character string | Display mask in Excel. This mask must correspond to the mask recognized by Excel. For more details, see the documentation about Excel. | MaskWD | Character string | Display mask in WINDEV or WEBDEV format that will be used in the Excel cell ("DD/MM/YYYY" for example). The specified mask is automatically converted into Excel format. The hundredths of a second found in the masks are not supported. For more details, see Supported masks. This property is available in write mode. | Multiline | Boolean | - True if the cell is multiline,
- False otherwise.
| Font | Font variable | Font of cell. | Type | Integer constant | Excel type of cell. The possible values are as follows:- xlsTypeString: String column or column containing different types of data.
- xlsTypeDate: "Date" column.
- xlsTypeDateTime: "DateTime" column.
- xlsTypeDouble: "Numeric" column.
- xlsTypeDuration: "Duration" column.
- xlsTypeError: If an error occurs. To get more details on the error, use xlsMsgError or ErrorInfo with the errMessage constant.
- xlsTypeTime: "Time" column.
- xlsTypeCurrency: "Currency" column.
This property is read-only. | Value | Type of cell value | Value of the cell. When defining the style of a column (xlsColumn.DefaultCell), this property is ignored in write mode and it is initialized empty in read mode). |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|