var fDesc=new Array();
fDesc[0] = "Bytescout Bitmap Visualizer (freeware)
Debugger bitmap objects content visualization add-on for Visual Studio 2005, 2008, 2010, 2012, 2013.
Are you developing application to draw or process images? This addon will save your time, clicks and key presses!
This addon shows a handy bitmap viewer when you hover the mouse over a Bitmap object in a source code (in Debugger) and clicking the tiny magnifier button in the pop-up.
Features:
- shows the image that selected Bitmap object contains
- automatically saves history of inspected images (and Bitmap objects) so you may review previous bitmaps
- you may zoom the image to view details
- you may save the image into a file with a handy UI
This addon is free for both commercial and personal use.";
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 = '';
}
}