Package org.apache.poi.hssf.record
Class FullColorExt
- java.lang.Object
-
- org.apache.poi.hssf.record.FullColorExt
-
public class FullColorExt extends Object
2.5.155 FullColorExt. ([MS-XLS].pdf, page 730.- Author:
- henrichen
-
-
Constructor Summary
Constructors Constructor Description FullColorExt(short xclrType, short nTintShade, int xclrValue)
FullColorExt(short r, short g, short b)
FullColorExt(RecordInputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
appendString(StringBuffer sb, String prefix)
int
getDataSize()
int
getRGB()
double
getTint()
short
getTintShade()
short
getXclrType()
int
getXclrValue()
boolean
isIndex()
boolean
isRGB()
boolean
isTheme()
boolean
isTint()
void
serialize(LittleEndianOutput out)
void
setTintShade(short nTintShade)
void
setXclrType(short xclrType)
void
setXclrValue(int xclrValue)
-
-
-
Constructor Detail
-
FullColorExt
public FullColorExt(RecordInputStream in)
-
FullColorExt
public FullColorExt(short r, short g, short b)
-
FullColorExt
public FullColorExt(short xclrType, short nTintShade, int xclrValue)
-
-
Method Detail
-
getDataSize
public int getDataSize()
-
isTheme
public boolean isTheme()
-
isRGB
public boolean isRGB()
-
isIndex
public boolean isIndex()
-
appendString
public void appendString(StringBuffer sb, String prefix)
-
serialize
public void serialize(LittleEndianOutput out)
-
getXclrType
public short getXclrType()
-
setXclrType
public void setXclrType(short xclrType)
-
getTintShade
public short getTintShade()
-
setTintShade
public void setTintShade(short nTintShade)
-
getXclrValue
public int getXclrValue()
-
setXclrValue
public void setXclrValue(int xclrValue)
-
getRGB
public int getRGB()
-
isTint
public boolean isTint()
-
getTint
public double getTint()
-
-