var fDesc=new Array(); fDesc[0] = "This is a sample extension that presents a new toolbar to ArcMap users. The 'Drafting Tools' toolbar streamlines the editing experience for drafting professionals.
Behind the scenes, the storage, editing and display of primitive points, lines and polygons is intelligently managed. Users can commence drafting without needing to pre-create data, define coordinate system settings, set up layer properties, manage edit sessions, select target layers or specify edit tasks.
Major Benefits:
An optional tip panel shows detailed help and usage for use each tool
Point numbers are labeled automatically
Features and segments can be snapped to points, corners, edges or mid-points of other features and segments.
Features and segments can be created relative to others (parallel, offset, tangent to, intersection, midpoint, distance from/to, bearing from/to)."; 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 = ''; } }