Gets the graphics engine used to render diagram elements.
SyntaxVB6
Copy Code
|
|---|
Public Property Get Graphics() As Graphics |
C++
Copy Code
|
|---|
public: |
A reference to a Graphics instance.
RemarksRepresents the graphics engine used to render diagram items. Currently FlowChartX supports two engines: the first one is based on the classic Windows GDI API; the second one is based on the GDI+ library. At startup the classic GDI engine is loaded.
See the Graphics class for more information.
ExampleThe following VB6 code demonstrates how to initialize and shut down GDI+.
VB6
Copy Code
|
|---|
Private Sub Form_Load() |
See Also