ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with reports and controls
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
InterfaceModifiableWithReportsAndQueries (Property)
In french: InterfaceModifiableAvecEtatsEtRequêtes
The InterfaceModifiableWitReportsAndQueries property is used to determine if the interface of a report can be modified in Reports & Queries. However, you cannot delete one or more controls from this report.
Remarks:
  • This feature is defined in the editor, in the report description ("Options" tab in the description window, "Allow editing report in Reports and Queries" and "Edit interface only").
  • The AllModifiableWithReportsAndQueries property is used to determine if the entire report can be edited in Reports & Queries.
  • For more details, see Reports & Queries.
Example
// Interface de l'état modifiable sous Etats & Requêtes ?
IF MyReport.InterfaceModifiableAvecEtatsEtRequêtes = True THEN
	// Mode WINDEV ?
	IF InWindowsMode() = True THEN
		// Ouverture de l'état sous Etats & Requêtes
		RunReportsAndQueries(MyReport)
	ELSE
		Info("L'interface de cet état est modifiable sous Etats & Requêtes")
	END
ELSE
	Info("L'interface de cet état n'est pas modifiable sous Etats & Requêtes")
END
Syntax
<Result> = <Report used>.InterfaceModifiableWithReportsAndQueries
<Result>: Boolean
  • True if the interface of the specified report can be modified in Reports & Queries,
  • False otherwise.
<Report used>: Report name
Name of the report to be used.
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/24/2024

Send a report | Local help