All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hfg.xml.msoffice2003.spreadsheetml.ExcelFont Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
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;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy