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 DefaultValue property is used to:
  • Find out the default value of an item. This item was defined in the data model editor or programmatically.
  • Set the default value of an item (item described programmatically only).
Example
// Define the default value of the Orders.Title item
Title.DefaultValue = 1
...
Address2 is Item Description
Address2.NullAllowed = True
// Set default value
Address2.DefaultValue = Null
...
// Validate the data file description
HDescribeFile(Orders)
Syntax

Finding out the default value of an item Hide the details

<Result> = <Data file>.<Item>.DefaultValue
<Result>: Type of item
Default value of the item.
<Data file>: Character string
Name of the data file used.
<Item>: Character string
Name of the item used.
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppiPhone/iPadIOS WidgetUser code (UMC)Ajax

Setting the default value of an item described programmatically Hide the details

<Item>.DefaultValue = <Value>
<Item>: Character string
Name of the item used. This name is defined with the Item Description type.
<Value>: Type of item
Default value of the item.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 02/29/2024

Send a report | Local help