Loads an image from the specified URL.
SyntaxVB6
Copy Code
|
|---|
Public Function LoadImageFromUrl( _ |
C++
Copy Code
|
|---|
public: |
An image object.
RemarksImages loaded through the HTML <IMG> tag cannot be assigned to the Picture property of FlowChartX boxes or tables. This method lets you load an image from a remote http server and get an OLE Picture object that can be displayed inside FlowChartX nodes.
ExampleThe following code loads an image from a server.
VB6
Copy Code
|
|---|
box.Picture = fcx.ScriptHelper.LoadImageFromUrl( _ |
See Also