ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Your version: 01F250083H (WINDEV 25)

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • ActiveX control
  • iFrame control
  • Chart control
  • Drawer control
  • Combo Box control
  • Limits
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadApple WatchUniversal Windows 10 AppWindows Mobile
Others
Stored procedures
InitialValue (Property)
In french: ValeurInitiale
..InitialValue is used to find out the initial value of a control found in a window or in a page. The initial value corresponds to the initial value defined in the editor ("Content" tab of the description window of control).
Example
// Initialize the value of "EDT_Customer" with its initial value
EDT_Customer = EDT_Customer..InitialValue
Syntax
<Initial value> = <Control used>..InitialValue
<Initial value>: Any type
Initial value of specified control.
<Control used>: Control name
Name of control to use.
Remarks
WINDEVWindows Mobile

ActiveX control

For an ActiveX control, the initial value corresponds to the COM identifier (ProgID) of the ActiveX selected when creating the window.
WEBDEV - Server codeAjax

iFrame control

For an iFrame control, ..InitialValue corresponds to:
  • the name of the page displayed (name selected in the description window of iFrame control). For example: "MyPage1".
  • a full URL if the page displayed corresponds to a page of another Internet site.
WINDEVWEBDEV - Server codeiPhone/iPadWindows MobileAjax

Chart control

For a Chart control, the initial value corresponds to the image displayed in the control background, selected when creating the window or the page.
WINDEV

Drawer control

For a Drawer control, ..InitialValue corresponds to the state (expanded (1) or collapsed (0)) selected when creating the control.
WINDEV

Combo Box control

For a Combo Box control, ..InitialValue is used to read again the initial string assigned to the element.
For example, if the following code is used to add an element:
ListAdd(Combo1, gImage(nImageNum,i) + "Customer.CustomerName" + i + ...
gLink("Customer.CustomerName" + i))
the following code is used to read the initial string again:
Combo1[1]..InitialValue
Remark: The result of ..DisplayedValue does not allow you to retrieve information about te content added by gLink.

Limits

WINDEVWINDEV Mobile In a window, ..InitialValue cannot be used on:
  • a window,
  • a caption,
  • a button,
  • a Shape control,
  • an option in a radio button or check box,
  • a row in a list box, listview or table,
  • a cell or a column in a table,
  • a menu,
  • a tab pane,
  • a group of controls,
  • a TreeView element.
WEBDEV - Server code In a page, ..InitialValue can only be used on:
  • an edit control,
  • a formatted display control,
  • a Combo Box control,
  • a List Box control,
  • a Static control,
  • a Table control,
  • a Rich Text Area control,
  • a layout cell (if the cell is in stream mode).
Java ..InitialValue only applies to the following elements:
  • Edit Control.
  • Image.
  • Check Box.
  • Radio Button.
  • List Box.
  • Combo Box.
  • Table.
  • Supercontrol.
Android Widget ..InitialValue only applies to the Image controls.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/01/2020

Send a report | Local help