This method initializes the Ephox EditLive! global object upon which it is called.
Info |
---|
This method is only for use with the EditLive! ASP load-time properties. |
Syntax
Visual Basic Script
Code Block |
---|
object.Init() |
Example
The following code declares a new EditLive! global object named elglobal, sets the required DownloadDirectory property, and calls the Init method on it. This will initialize elglobal with the given DownloadDirectory property and the default setLocalDeployment Method value of true.
Code Block |
---|
Dim elglobal Set elglobal = New EditLiveForJavaGlobal elglobal.DownloadDirectory = "../../redistributables/editlivejava" elglobal.Init() |
Remarks
Before the Init method is called on an EditLive! global object, the DownloadDirectory property of that object must be set.