ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Diagram editor functions
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
<Diagram variable>.ToImage (Function)
In french: <Variable Diagramme>.VersImage
Exports a diagram to a variable of type Image. The generated image can then be saved or displayed in another control.
Example
// Save a diagram to a PNG file
DiagImage is Image
DiagImage = DIAGEDT_MyDiagram.ToImage()
IF ErrorOccurred THEN
Error()
RETURN
END
DiagImage.SavePNG("DiagramExport.png")
MyDiagram is Diagram <- DIAGEDT_MyDiagram
 
// Retrieves the generated image
MyImage is Image
MyImage <- MyDiagram.ToImage()
 
// Open the image
OpenDocument(MyImage)
Syntax
<Result> = <Diagram>.ToImage([<Background color>])
<Result>: Image variable
Variable of type Image corresponding to the image of the diagram.
<Diagram>: Name of the control or Diagram variable
Diagram variable to manipulate
<Background color>: Optional integer
Image background color. This color can correspond to:If the background color is not specified, the diagram will be exported as is, with the background color already defined (if any).
Component: wd290mdl.dll
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/19/2023

Send a report | Local help