Added underline capability to the header and footer.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353648 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5bb531e555
commit
c0ba718df8
@ -212,5 +212,45 @@ public class HSSFFooter extends Object {
|
||||
public static String tab() {
|
||||
return "&A";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the string representing the start underline
|
||||
*
|
||||
* @return The special string for start underline
|
||||
*/
|
||||
public static String startUnderline()
|
||||
{
|
||||
return "&U";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the string representing the end underline
|
||||
*
|
||||
* @return The special string for end underline
|
||||
*/
|
||||
public static String endUnderline()
|
||||
{
|
||||
return "&U";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the string representing the start double underline
|
||||
*
|
||||
* @return The special string for start double underline
|
||||
*/
|
||||
public static String startDoubleUnderline()
|
||||
{
|
||||
return "&E";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the string representing the end double underline
|
||||
*
|
||||
* @return The special string for end double underline
|
||||
*/
|
||||
public static String endDoubleUnderline()
|
||||
{
|
||||
return "&E";
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -252,5 +252,45 @@ public class HSSFHeader
|
||||
{
|
||||
return "&A";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the string representing the start underline
|
||||
*
|
||||
* @return The special string for start underline
|
||||
*/
|
||||
public static String startUnderline()
|
||||
{
|
||||
return "&U";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the string representing the end underline
|
||||
*
|
||||
* @return The special string for end underline
|
||||
*/
|
||||
public static String endUnderline()
|
||||
{
|
||||
return "&U";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the string representing the start double underline
|
||||
*
|
||||
* @return The special string for start double underline
|
||||
*/
|
||||
public static String startDoubleUnderline()
|
||||
{
|
||||
return "&E";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the string representing the end double underline
|
||||
*
|
||||
* @return The special string for end double underline
|
||||
*/
|
||||
public static String endDoubleUnderline()
|
||||
{
|
||||
return "&E";
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user