var fDesc=new Array(); fDesc[0] = "EO.Pdf is a .NET class library that offers a set of easy to use and intuitive objects for you to create PDF file programmatically. It provides an abstract content model that implements a complex, powerful yet very easy to use layout engine that helps you to create a PDF file in minutes.

Main features:

- Intuitive Programming Interface. No need to write code to calculate the position of the output. EO.Pdf uses an abstract content model where user only needs to define a content tree and set styles on the content object.
- Powerful Layout Engine. EO.Pdf implements a layout engine that is very similar to that of HTML. You define various contents-- paragraph, text, images, table, and so on. The layout engine does the rest for you.
- Inline and Block Borders and Background. Put borders around anything you would like. Highlight anything with a background color. Reserve space with margins and paddings. EO.Pdf got it all covered.
- Style and Style Sheet. Built your content tree and then style the contents with style and style sheet.
- Floating Contents. Float any block and render other contents around it. You can float multiple blocks, including floating blocks inside floating blocks.
- Direct "out of flow" Contents. Offers various methods to create direct out of flow contents, similar to HTML's "position:absolute" feature.
- Powerful Table. Include any contents inside a table cell. Span a cell into multiple rows or columns. Draw grid lines or border lines. Adjust cell paddings or spacings. All can be done in a matter of minutes.
- Page Header & Footer. Offers multiple methods to create page context sensitive page header and footer.
- Watermark & Rubber Stamp. Create multiple-layer document with background, text and overlays.
- Interactive Form Places input elements such as text box in your PDF file as simple as placing any other contents;
- Bookmarks & Links Create hierarchical bookmarks to allow user to navigate to any chapter or section of the document, or create links to allow user to navigate from one part of the document to another."; 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 = ''; } }