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
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The FullName property is used to find out the full name:
  • of a control.
  • of a window.
  • of a menu option.
  • of a table column.
Example
WINDEViPhone/iPadIOS WidgetJava
Info("The full name of the control is " + EDT_Edit1.FullName)
// Displays "The full name of the control is WIN_Window1.EDT_Edit1"
WEBDEV - Server code
Trace("The full name of the control is " + EDT_Edit1.FullName)
// Displays "The full name of the control is PAGE_Page1.EDT_Edit1"
WINDEVAndroidiPhone/iPadIOS WidgetJava
Info("The full name of the control is " + COL_Column1.FullName)
// Displays "The full name of the control is WIN_Window1.TABLE_Table1.COL_Column1"
Syntax

Finding out the full name of specified element Hide the details

<Result> = <Element used>.FullName
<Result>: Character string
  • Full name of specified element.
  • Empty string ("") for:
    • lines in Table, List, ListView control or Combo fields,
    • cells in Table controls.
<Element used>: Character string
Name of the element to be used.
Remarks
Android Widget The FullName property can only be used with the following elements:
  • Button control.
  • 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: 12/05/2024

Send a report | Local help