AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Editor de diagramas
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
Loads a diagram into a Diagram variable from a ".wddiag" file, a memo or a binary buffer.
Example
MyDiagram is Diagram
MyDiagram <- DIAGEDT_MyDiagram
MyDiagram.Load("diagram1.wddiag")
IF ErrorOccurred THEN
Error("Unable to load file: " + ErrorInfo())
END
Syntax
<Result> = <Diagram>.Load(<File to load>)
<Result>: Boolean
  • True if the file was loaded,
  • False otherwise. ErrorInfo returns more details about the error.
<Diagram>: Diagram variable
Name of the Diagram variable into which the file must be loaded.
<File to load>: Character string
Diagram file to be loaded. This file can correspond to:
  • the full path of a ".wddiag" file,
  • the name of a ".wddiag" file (if the file is in the directory of the executable),
  • a binary memo item in a data file,
  • a binary buffer containing the full details of a ".wddiag" file (result of <Diagram editor>.Save).
Component: wd290mdl.dll
Versión mínima requerida
  • Versión 27
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 19/06/2023

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