ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / HFSQL properties
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 GDPR property is used to:
  • 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: The items to which GDPR applies are defined in the data model editor
Example
// Describe the AFile file
...
// Describe the "NAME" item
MyItem is Item Description
MyItem.Name = "NAME"
MyItem.Type = hItemText
MyItem.Size = 40
MyItem.KeyType = hUniqueKey
MyItem.GDPR = True
// Validate the description of the "NAME" item
HDescribeItem(AFile, MyItem)
// Validate the description of AFile file
...
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: 02/29/2024

Send a report | Local help