|
|
|
|
|
- Properties specific to diagLibrary variables
diagLibrary (Variable type) In french: diagBibliothèque
The diagLibrary type is used to define all the advanced characteristics of a library of preset shapes used by a Diagram Editor control. You can define and change the characteristics of this library using different WLanguage properties. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable. sFile is string = fTempDir() + [ fSep ] + "custom_library.wddiag"
TempLibrary is Diagram
D1 is diagOval
D1.Width = 50
D1.Height = 50
D1.Background.Color = DarkRed
Add(TempLibrary.Shape, D1)
D2 is diagOval
D2.Width = 50
D2.Height = 70
D2.Background.Color = DarkGreen
Add(TempLibrary.Shape, D2)
DiagramSave(TempLibrary, sFile)
MyLibrary is diagLibrary
DiagramLoadLibrary(MyLibrary, sFile)
MyLibrary.Name = "Custom"
Add(DIAGEDT_Diagram.Library, MyLibrary)
ToastDisplay("The custom library has been added to the list.")
MyDiagram is Diagram // Populate a Looper control with all the shapes from all the libraries FOR EACH Lib OF MyDiagram.Library FOR EACH Shape OF Lib imgShape is Image = DiagramShapeToImage(Shape) LooperAddLine(LOOP_MyLooper, Lib.Name, imgShape, Shape.Name) END END
Properties Properties specific to diagLibrary variables The following properties can be used to handle diagLibrary variables: | | | Property name | Type used | Effect |
---|
Name | Character string | Name of the shape library. | Shape | Array of diagShape | Array of preset shapes. |
Remarks - By default, shape libraries are displayed in the left panel of the Diagram Editor control.
- The Library property of the Diagram Editor control corresponds to an array of variables of type diagLibrary.
Related Examples:
|
Unit examples (WINDEV): The Diagram control
[ + ] Simplified use of a Diagram control
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|