AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones de cuadros de diálogo
  • Using the WLanguage properties with the cells in a status bar
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, MessageAddCell is kept for backward compatibility. This function has been replaced with StatusBarAddCell.
Adds a new cell to the status bar of the current window.
Remark: The window must have a status bar.
Example
// Adds "MyCell" to the status bar of the current window
StatusBarAddCell("MyCell", 100, LightRed)
Syntax
StatusBarAddCell(<Cell name> [, <Cell Size> [, <Cell Color>]])
<Cell name>: Character string
Name of the cell to create. This name will be used to handle the cell through programming (with the properties for example). The first cell is named "". If the cell already exists, its description will be automatically modified.
<Cell Size>: Optional integer
Size of the cell in pixels. If this parameter corresponds to -1, the cell will occupy the entire available space in the status bar.
<Cell Color>: Optional constant or integer
Cell background color. This color can correspond to:
Remarks

Using the WLanguage properties with the cells in a status bar

Several WLanguage properties can be applied status bar cells.
Caution: To use a property on a cell of a status bar, the following syntax must be used:
{"Cell name"}..<Property name>
Component: wd290obj.dll
Versión mínima requerida
  • Versión 9
Comentarios
Video MessageAddCell
https://youtu.be/XelcktoZs1Y

https://windevdesenvolvimento.blogspot.com/2019/04/dicas-2078-windev-e-webdev-comandos-56.html

// BTN_MESSAGEADDCELL_STATUS_bAR

MessageAddCell("NomeCelula1",300,LightGray)
MessageAddCell("NomeCelula2",300,LightGray)
Message("Primeira Mensagem")
Message("NomeCelula1","Outra Mensagem")
Message("NomeCelula2","Ultima Mensagem")
amarildo
18 04 2019

Última modificación: 21/06/2023

Señalar un error o enviar una sugerencia | Ayuda local