Initializes and starts-up one of the graphics engines supported by FlowChartX.
SyntaxVB6
Copy Code
|
|---|
Public Sub StartUp( _ |
C++
Copy Code
|
|---|
public: |
Specifies which graphics engine to use when rendering diagrams on screen, or printing or exporting them to image files.
RemarksPossible values for the GraphicsEngine argument are:
Starting-up GDI+ fails if the gdiplus.dll is not available on a user's PC. In such situation StartUp falls back to the classic GDI engine and EngineType indicates geClassic as the active engine. If GDI+ starts successfully, it must be shut down upon application exit via ShutDown.
GDI+ works correctly only with proportional fonts. If you enable the GDI+ graphics engine, make sure that all fonts used in your application are proportional. Proportional fonts are marked with 'TT' or 'O' symbols in the standard Windows font dialog.
ExampleThe following VB6 code demonstrates how to initialize and shut down GDI+.
VB6
Copy Code
|
|---|
Private Sub Form_Load() |
See Also