ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • How the BackgroundStyle property works
  • Limit
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
Warning
From version 26, BrushStyle is kept for backward compatibility. This property has been replaced with BackgroundStyle.
The BackgroundStyle property is used to get and modify the background style of cells in tables and/or TreeView Tables. This property is effective only if the row, column or cell uses a background color specified with the BackgroundColor property. This property can be used to highlight a specific cell in the table.
Example: The "Monday" cell is colored in light green with the "Tube" style.
Example
// Coloration de la cellule JOUR de la ligne en cours
COL_Jour[1].CouleurFond = LightGreen
COL_Jour[1].StyleFond = styleTube
Syntax

Finding out the style of the background color Hide the details

<Background style> = <Element to handle>.BackgroundStyle
<Background style>: Integer constant
Background style currently used:
styleCrossHatchHatches that use a '+++++' pattern
styleDefaultDefault value. Solid colors.
styleDiagonalCrossHatchHatches that use a 'xxxxx' pattern
styleGradientSimple gradient (to the bottom).
styleHorizontalHatchHatches such as ------
styleLeftDiagonalHatchHatches such as //////
styleRightDiagonalHatchHatches that use a '\\\\\\' pattern
styleTube2 gradients of the main color, used to get a tube effect.
styleVerticalHatchHatches such as |||||
<Element to handle>: Character string
Identifies the cell, row or column from a Table or TreeView Table control that must be managed.

Modifying the style of the background color Hide the details

<Element to handle>.BackgroundStyle = <New style>
<Element to handle>: Character string
Identifies the cell, row or column from a Table or TreeView Table control that must be managed.
<New style>: Integer constant
Background style to use:
styleCrossHatchHatches that use a '+++++' pattern
styleDefaultDefault value. Solid colors.
styleDiagonalCrossHatchHatches that use a 'xxxxx' pattern
styleGradientSimple gradient (to the bottom).
styleHorizontalHatchHatches such as ------
styleLeftDiagonalHatchHatches such as //////
styleRightDiagonalHatchHatches that use a '\\\\\\' pattern
styleTube2 gradients of the main color, used to get a tube effect.
styleVerticalHatchHatches such as |||||
Remarks

How the BackgroundStyle property works

The BackgroundStyle property applies changes to cells, rows or columns only if the color of these elements has been set with the BackgroundColor property.
Using the hatches: The color of the hatches is defined by the Color property. By default, the color of the hatches corresponds to the color of the text. To use a different color for the text, use gPen.
Example:
TABLE_SansNom1.Couleur = Black
TABLE_SansNom1.CouleurFond = LightYellow
FOR i = 1 TO 10
TableAddLine(MySelf)
TABLE_SansNom1[i].StyleFond = styleLeftDiagonalHatch
TABLE_SansNom1.COL_SansNom1[i] = gPen(LightRed) + "Ligne " + i
END

Limit

The BackgroundStyle property can only be used on cells, rows and columns of Table and TreeView Table controls.
Related Examples:
Style for displaying the table cells Unit examples (WINDEV): Style for displaying the table cells
[ + ] Modifying the display style of table cells.
The ..BrushStyle property is used to hatch the cells or to create a color gradient with "tube" effect.
Minimum version required
  • Version 11
Comments
Click [Add] to post a comment

Last update: 03/05/2024

Send a report | Local help