var fDesc=new Array();
fDesc[0] = "Softgroup .Net ListBar Control is a small, fast and lightweight component for Microsoft .Net Visual Studio that provide an enhanced Microsoft Outlook bar style user interface to your application.
Main features:
- Easy to use both at runtime and design time
- System or Enhanced draw style
- Customize any aspects of Groups and/or Items (colours, fonts, text)
- Customize gradient effects on background and groups appearance
- Supports icons on groups
- Supports background images
- Four View style of Groups Items: small, large, with or without text
- Supports Items drag operations
- Supports display of ContextMenuStrip objects on items
- Tooltip text for both Groups and Items
- Consumes few memory resources
- x86 and x64 platforms available
- VB.NET and CS.NET samples included
- 100% .Net managed code";
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 = '';
}
}