EditLive! 9 Documentation : show Method

This method displays the Ephox EditLive! instance in the Web browser. 

This method only applies for EditLive! ASP and JavaScript integrations.

Syntax

Visual Basic
object.Show()
JavaScript
editliveInstance.show();

Examples

The following code sets only the required properties of an EditLive! applet and then displays the applet within the Web page.

VBScript
editlive1.Show()
JavaScript
var editlive_js;
editlive_js = new EditLiveJava("ELApplet1","700","400");
...
editlive_js.show(); 

Remarks

Before this method is called, all the required properties of an EditLive! instance object must be set.

See Also