Uses of Class
org.apache.poi.hssf.record.FontRecord
-
Packages that use FontRecord Package Description org.apache.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.org.apache.poi.hssf.record Record package contains class representations for XLS binary strutures.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet model -
-
Uses of FontRecord in org.apache.poi.hssf.model
Methods in org.apache.poi.hssf.model that return FontRecord Modifier and Type Method Description FontRecord
InternalWorkbook. createNewFont()
creates a new font record and adds it to the "font table".FontRecord
InternalWorkbook. getFontRecordAt(int idx)
gets the font record at the given index in the font table.Methods in org.apache.poi.hssf.model with parameters of type FontRecord Modifier and Type Method Description int
InternalWorkbook. getFontIndex(FontRecord font)
Retrieves the index of the given fontvoid
InternalWorkbook. removeFontRecord(FontRecord rec)
Removes the given font record from the file's list. -
Uses of FontRecord in org.apache.poi.hssf.record
Methods in org.apache.poi.hssf.record that return FontRecord Modifier and Type Method Description FontRecord
FontRecord. copy()
Methods in org.apache.poi.hssf.record with parameters of type FontRecord Modifier and Type Method Description void
FontRecord. cloneStyleFrom(FontRecord source)
Clones all the font style information from another FontRecord, onto this one.boolean
FontRecord. sameProperties(FontRecord other)
Does this FontRecord have all the same font properties as the supplied FontRecord? Note thatequals(Object)
will check for exact objects, while this will check for exact contents, because normally the font record's position makes a big difference too.Constructors in org.apache.poi.hssf.record with parameters of type FontRecord Constructor Description FontRecord(FontRecord other)
-
Uses of FontRecord in org.apache.poi.hssf.usermodel
Constructors in org.apache.poi.hssf.usermodel with parameters of type FontRecord Constructor Description HSSFFont(int index, FontRecord rec)
Creates a new instance of HSSFFont
-