ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE


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
VisibleEndUser (Property)
In french: VisibleUtilisateurFinal
HFSQLHFSQL Client/ServerAvailable only with these kinds of connection
The VisibleEndUser property is used to:
  • Find out whether an item is visible (or not) to the end users. This item was defined in the data model editor or through programming.
  • Define if an item must be visible to the end users (only when the item is described through programming).
When the item is visible to the end users:
Remark: The visibility of an item is defined in the editor when describing the file items ("Visible to the end user" option).
Example
// Define the visibility of the Orders.OrdDate item
OrdDate.VisibleEndUser = True
...
// Validate the data file description
HDescribeFile(Orders)
Syntax

Finding out whether an item is visible to the end user Hide the details

Result> = <Data file>.<Item>.VisibleEndUser
<Result>: Boolean
  • True if the item is visible to the end users,
  • False otherwise.
<Data file>: Character string
Name of the data file used.
<Item>: Character string
Name of the item used.

Defining the visibility of an item described through programming Hide the details

<Item>.VisibleEndUser = <Visibility>
<Item>: Character string
Name of the item used. This name was defined by the Item Description type.
<Visibility>: Boolean
  • True if the item must be visible to the end users,
  • False otherwise.
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment