Uses of Class
org.apache.poi.hssf.record.FontRecord

Packages that use FontRecord
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 usermodel package maps HSSF low level strutures to familiar workbook/sheet model 
 

Uses of FontRecord in org.apache.poi.hssf.model
 

Methods in org.apache.poi.hssf.model that return FontRecord
 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
 int InternalWorkbook.getFontIndex(FontRecord font)
          Retrieves the index of the given font
 void 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 with parameters of type FontRecord
 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 that Object.equals(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.
 

Uses of FontRecord in org.apache.poi.hssf.usermodel
 

Constructors in org.apache.poi.hssf.usermodel with parameters of type FontRecord
HSSFFont(short index, FontRecord rec)
          Creates a new instance of HSSFFont
 



Copyright 2010 The Apache Software Foundation or its licensors, as applicable.