Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
adding Under Lines 
 

This section provides an example that adds under lines in java.

 

adding Under Lines

                         

In this program we are going to tell you how you can add underlines. You can  any number of lines. This example gives you an idea ,how to make a java program to add a underline and you can also make program for making line on the text.
In this example we create chunk and then we  use the setUnderLine(
0.2f, -2f) method to add the line. There are an other chunk  object on which we use setUnderLine(0.5f, 3f).So you can create any number of chunk object and set line as your requirements. 

Code Description:


You can create line for chunk object to any position of the text .

To make a program you need to import some packages one more package:
 import java.awt.Color;

setUnderLine(float f,float f):We use the setUnderLine(float f,float f) method. Float values may be negative or positive depending on  where you want to fix the line for the text.

You can create line on small text .For this Chunk class is provided by iText API,s.

 The code of the program is given below:

import java.awt.Color;
import java.io.FileOutputStream;
import java.io.IOException;
import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfWriter;
public class addUnderLines
      {
  public static void main(String[] argsthrows Exception 
             {
          System.out.println("Underline, Strike through,...");
    Document document = new Document();
    PdfWriter.getInstance(document,  new FileOutputStream("underLinesPdf.pdf"));
      document.open();
      Chunk chunk = new Chunk("RoseIndia.net");
      chunk.setUnderline(0.2f, -2f);
      Paragraph paragraph = new Paragraph("The following chunk is ");
      paragraph.add(chunk);
      document.add(paragraph);
      Chunk chunk1 = new Chunk("roseindia.net");
      chunk1.setUnderline(0.5f3f);  
      document.add(chunk1);    
            document.close();
  }
}

The output of the program is given below:

Download this example.

 

                         

» View all related tutorials
Related Tags: c web pdf file stl text application import jar diff io make packages port this package itext app if tex

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.