com.hfg.xml.msoffice2003.spreadsheetml.ExcelFont Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.xml.msoffice2003.spreadsheetml;
import com.hfg.xml.XMLTag;
import com.hfg.graphics.ColorUtil;
import java.awt.*;
public class ExcelFont extends XMLTag
{
//---------------------------------------------------------------------------
public ExcelFont()
{
super(SpreadsheetML.FONT);
}
//---------------------------------------------------------------------------
public ExcelFont setColor(Color inValue)
{
setAttribute(SpreadsheetML.COLOR_ATT, "#" + ColorUtil.colorToHex(inValue));
return this;
}
//---------------------------------------------------------------------------
public ExcelFont setFontName(String inValue)
{
setAttribute(SpreadsheetML.FONT_NAME_ATT, inValue);
return this;
}
//---------------------------------------------------------------------------
public ExcelFont setSize(int inValue)
{
setAttribute(SpreadsheetML.SIZE_ATT, inValue);
return this;
}
//---------------------------------------------------------------------------
public ExcelFont setBold()
{
setAttribute(SpreadsheetML.BOLD_ATT, "1");
return this;
}
//---------------------------------------------------------------------------
public ExcelFont setItalic()
{
setAttribute(SpreadsheetML.ITALIC_ATT, "1");
return this;
}
}