ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Various properties
  • Font variable
  • Color of an Edit control
  • Text color in a Static Text control
  • Text color of a Button control
  • Text color of a Radio Button or Check Box control
  • Text color of a List Box or Combo Box control
  • Text color of a cell, row or column in a Table control
  • Color of an Image control
  • Color of the tabs in a Tab control
  • Limitations
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The Color property gets or sets the font color of:
  • a variable of type Font.
  • text displayed in a Static or Calculated control of a report.
  • text displayed in a window control.
  • text displayed in a page control.
  • text in a menu option.
The effects of the Color property depend on the type of control (for more details, see "Remarks").
Note: By default, the color of a Font variable is black.
Example
// The text color is modified according to the displayed value
IF EDT_Total>15000 THEN
EDT_Total.Color = LightRed
END
iPhone/iPadIOS WidgetMac Catalyst
// Définir les caractéristiques d'une variable de type Police
Police1 is Font
Police1.Name = "Arial"
Police1.Color = LightYellow
Police1.Size = 14
Police1.SizeUnit = unitPoint
Police1.Orientation = 45
// Appliquer la police au champ "MonChamp"
MyControl.Police = Police1
Syntax

Getting the text color Hide the details

<Result> = <Element used>.Color
<Result>: Integer or constant
Color of the specified element. This color can correspond to:
<Element used>: Control name or Font variable
Name of the element for which you want to get the text color. This element can correspond to:
  • name of a control in a window or page.
  • name of a control in a report.
  • name of a variable of type Font.

Changing the text color Hide the details

<Element used>.Color = <New color>
<Element used>: Control name or Font variable
Name of the element for which you want to change the text color. This element can correspond to:
  • name of a control in a window or page.
  • name of a control in a report.
  • name of a variable of type Font.
<New color>: Integer or constant
New color of the specified element. This color can correspond to:
Remarks

Font variable

A font can be created from a Font variable.
To define the font characteristics, use:
This font can be used:
AndroidAndroid Widget This font can only be used in the controls of a window (Font property).
Assigning a font to a control:
  • if the Font variable has no specific color, the color of the text displayed in the control is kept.
  • if the Font variable has a specific color, this color is applied to the text displayed in the control.

Color of an Edit control

The Color property can be used to identify and modify the color of text entered.
AndroidAndroid Widget iPhone/iPadIOS WidgetMac Catalyst

Text color in a Static Text control

The Color property lets you identify and modify the text color of a Static Text control.
AndroidAndroid Widget iPhone/iPadMac Catalyst

Text color of a Button control

The Color property lets you identify and modify the color of the text in a Button field.
AndroidiPhone/iPadMac Catalyst

Text color of a Radio Button or Check Box control

The Color property can be used to identify and modify the text color of all Radio Button control and Check Box control options.
AndroidiPhone/iPadMac Catalyst

Text color of a List Box or Combo Box control

The Color property gets and sets the text color of all the options of a List Box control.
WINDEV Mobile To get or change the text color of an option in a List Box control, specify the desired option using the following syntax: ListName[RowNum].
For example, the following code applies a green color to the text of the second row of the List Box control:
LIST_List1[2].Color = LightGreen

Attention: For lines in a List Box control, the new color is retained only for visible lines..
AndroidiPhone/iPadMac Catalyst

Text color of a cell, row or column in a Table control

  • To get or change the text color of a cell in a Table control, specify the desired cell using the following syntax: TableName[RowNum][ColumnNum].
    For example, the following code changes the text color in the cell on row 1, column 2:
    TABLE_Table1[1][2].Color = DarkBlue
  • To get or change the text color of a row in a Table control, specify the desired row using the following syntax: TableName[RowNum].
  • To get or change the text color of a column in a Table control, simply use the Color property with the column name.
Caution: To preserve text color when selecting a line in a Table based on a data file field, you need to use the Color property in the "Select table line" event..
AndroidAndroid Widget iPhone/iPadIOS WidgetMac Catalyst

Color of an Image control

The Color property gets and sets the background color of an Image control.
iPhone/iPadMac Catalyst

Color of the tabs in a Tab control

When used on a Tab control, the Color property allows you to get and change the background color of the tabs.
When used on a tab, the Color property allows you to get and change the text color of the tabs.
For example:
// Changes the text color of tab 1
TAB_MyTab[1].Color = LightRed

Limitations

iPhone/iPadIOS WidgetMac Catalyst Limitations on report controls
The Color property has no effect on:
  • Image controls.
  • Bar Code controls.
  • RTF controls.
  • Check Box controls.
  • Chart controls.
  • Signature controls.
  • reports.
  • report blocks.
Android Widget The Color property can only be used with the following elements:
  • Button control.
  • Static Text control.
  • Image control.
IOS Widget The Color property can only be used with the following elements:
  • Static Text control.
  • Image control.
  • Window.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/06/2025

Send a report | Local help