Package org.apache.poi.hwpf.usermodel
Class DropCapSpecifier
- java.lang.Object
-
- org.apache.poi.hwpf.usermodel.DropCapSpecifier
-
- All Implemented Interfaces:
Duplicatable
public final class DropCapSpecifier extends Object implements Duplicatable
This data structure is used by a paragraph to determine how it should drop its first letter. I think its the visual effect that will show a giant first letter to a paragraph. I've seen this used in the first paragraph of a book
-
-
Constructor Summary
Constructors Constructor Description DropCapSpecifier()DropCapSpecifier(byte[] buf, int offset)DropCapSpecifier(short fdct)DropCapSpecifier(DropCapSpecifier other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DropCapSpecifiercopy()booleanequals(Object obj)bytegetCountOfLinesToDrop()bytegetDropCapType()inthashCode()booleanisEmpty()voidsetCountOfLinesToDrop(byte value)voidsetDropCapType(byte value)shorttoShort()StringtoString()
-
-
-
Constructor Detail
-
DropCapSpecifier
public DropCapSpecifier()
-
DropCapSpecifier
public DropCapSpecifier(DropCapSpecifier other)
-
DropCapSpecifier
public DropCapSpecifier(byte[] buf, int offset)
-
DropCapSpecifier
public DropCapSpecifier(short fdct)
-
-
Method Detail
-
copy
public DropCapSpecifier copy()
- Specified by:
copyin interfaceDuplicatable
-
getCountOfLinesToDrop
public byte getCountOfLinesToDrop()
-
getDropCapType
public byte getDropCapType()
-
isEmpty
public boolean isEmpty()
-
setCountOfLinesToDrop
public void setCountOfLinesToDrop(byte value)
-
setDropCapType
public void setDropCapType(byte value)
-
toShort
public short toShort()
-
-