ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
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
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
WINDEVUniversal Windows 10 AppiPhone/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:
    • rows in the Table, List Box, ListView or Combo Box controls,
    • cells in Table controls.
<Element used>: Character string
Name of the element to be used.
Remarks
Android Widget The FullName property applies only to the following elements:
  • Button control.
  • Static 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/26/2023

Send a report | Local help