var fDesc=new Array(); fDesc[0] = "Extensibility Studio is a complete solution allowing to extend your .NET application with user-defined logic. It provides set of tools allowing users of your applications to write code for mini-programs (scripts) to enhance existing or define new logic by accessing and manipulating application objects, build visual user interfaces for these scripts and debug them with fully-featured debugging engine.

Extensibility Studio includes following component libraries which can be installed all together or separately.

Code Editor brings efficient code editing functionality into your .NET applications. It provides code editing capabilities such as syntax highlighting, code completion and code outlining, visual indicators for bookmarks, line styles, syntax errors and much more, matching speed and convenience of Microsoft Visual Studio editor

Form Designer provides quick and convenient way for creating visual user interfaces. It allows placing controls to the design surfaces, setting their initial properties and writing event handlers for their events.

Scripter - allows integrating C# and VB scripts into your WinForms or WPF .NET applications. It allows extending functionality of the application logic without recompiling and redeploying the application."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }