From bee5d25e0c0be2cc78e3eab9cb520b3d6cea43fc Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Fri, 16 Jun 2006 14:48:09 +0000 Subject: [PATCH] Allow fetching and changing the character set, eg to support wingdings fonts (bug #39389) git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@414842 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/poi/hssf/usermodel/HSSFFont.java | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java b/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java index b760082af0..8d502d82ac 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java @@ -114,6 +114,24 @@ public class HSSFFont */ public final static byte U_DOUBLE_ACCOUNTING = 0x22; + + /** + * ANSI character set + */ + public final static byte ANSI_CHARSET = 0; + + /** + * Default character set. + */ + public final static byte DEFAULT_CHARSET = 1; + + /** + * Symbol character set + */ + public final static byte SYMBOL_CHARSET = 2; + + + private FontRecord font; private short index; @@ -349,6 +367,31 @@ public class HSSFFont return font.getUnderline(); } + + /** + * get character-set to use. + * @return character-set + * @see #ANSI_CHARSET + * @see #DEFAULT_CHARSET + * @see #SYMBOL_CHARSET + */ + public byte getCharSet() + { + return font.getCharset(); + } + + /** + * set character-set to use. + * @return character-set + * @see #ANSI_CHARSET + * @see #DEFAULT_CHARSET + * @see #SYMBOL_CHARSET + */ + public void setCharSet(byte charset) + { + font.setCharset(charset); + } + public String toString() { return "org.apache.poi.hssf.usermodel.HSSFFont{" + -- 2.39.5