AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de reportes y controles asociados
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
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, "Permitir la edición del reporte en Reports and Queries" and "Editar interfaz únicamente").
  • The AllModifiableWithReportsAndQueries property is used to determine if the entire report can be edited in Reports & Queries.
  • For more details, see Reports & Queries.
Ejemplo
// Interface of the report modifiable in Reports & Queries?
IF MyReport.InterfaceModifiableWithReportsAndQueries = True THEN
	// WINDEV mode?
	IF InWindowsMode() = True THEN
		// Open the report in Reports & Queries
		RunReportsAndQueries(MyReport)
	ELSE
		Info("The interface of this report can be modified in Reports & Queries")
	END
ELSE
	Info("The interface of this report cannot be modified in Reports & Queries")
END
Sintaxis
<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.
Versión mínima requerida
  • Versión 10
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

Señalar un error o enviar una sugerencia | Ayuda local