ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / HFSQL properties
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Property GDPR property allows:
  • find out if the GDPR applies to an item from a data file.
  • define whether the GDPR should apply to an item (in the item description in the code only).
Reminder: GDPR-relevant fields are defined in the data model editor.
Example
// Description du fichier de données UnFichier
...
// Description de la rubrique "NOM"
MaRubrique is Item Description
MaRubrique.Name = "NOM"
MaRubrique.Type = hItemText
MaRubrique.Size = 40
MaRubrique.KeyType = hUniqueKey
MaRubrique.GDPR = True
// Validation de la description de la rubrique "NOM"
HDescribeItem(UnFichier, MaRubrique)
// Validation de la description du fichier de données UnFichier
...
Syntax

Finding out if the GDPR applies to the item Hide the details

<Result> = <Data file>.<Item>.GDPR
<Result>: Boolean
  • True if the GDPR applies to the item associated with the record,
  • False otherwise.
Logical name of the data file used. This name was defined in the data model editor or with the File Description type.
<Item>: Character string
Name of the item used. This name was defined in the data model editor or with the Item Description type.

Determining if the GDPR should apply to the item Hide the details

<Item>.GDPR = <Management mode>
<Item>: Character string
Name of the item used. This name is defined with the Item Description type.
<Management mode>: Boolean
  • True if the GDPR applies to the item,
  • False otherwise.
Minimum version required
  • Version 26
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/13/2025

Send a report | Local help