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
NbThumbnail (Property)
In french: NbVignette
HFSQL ClassicHFSQL Client/ServerAvailable only with these kinds of connection
The NbThumbnail property is used to get the number of thumbnails generated for an item. This item was defined in the data model editor or programmatically.
Remark: HFSQL thumbnails for a heading are generated automatically when:
Example
// Get the number of generated thumbnails 
// and the number of expected thumbnails
// for the Customer.Photo item
NumberThumbnail is int
ExpectedNumberThumbnail is int
NumberThumbnail = Customer.Photo.NbThumbnail
ExpectedNumberThumbnail = Customer.Photo.NbDescribedThumbnail
// Same number?
IF NumberThumbnail = ExpectedNumberThumbnail THEN
	Info("All the thumbnails have been generated")
ELSE
	FOR Number = 1 TO ExpectedNumberThumbnail
		ErrorString += "Thumbnail " + Number + Customer.Photo.InfoThumbnailGeneration[n] + CR
	END
	Error("Generation error", ErrorString)
END
Syntax
<Number of generated thumbnails> = <Data file>.<item>.NbThumbnail
<Number of generated thumbnails>: Integer
Number of thumbnails generated for the specified item.
<Data file>: Character string
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 binary memo item used. This name is defined in the data model editor or with the Item Description type.
Remarks
The NbThumbnail property is available:
  • in HFSQL Classic and HFSQL Mobile: on the fields of a data file, view or query.
  • in HFSQL Client/Server: on data file fields only.
Linux The NbThumbnail property is only available on data file items in HFSQL Client/Server.
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/06/2024

Send a report | Local help