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
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 definition of the headings concerned by the GDPR is carried out in the data model editor.
Example
// Describe the AFile data file
...
// "NAME" field description
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 the AFile data 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: 12/05/2024

Send a report | Local help