File
Doc
Category
Size
Date
Package
DropCapSpecifier.java
API Doc
Apache Poi 3.0.1
1795
Mon Jan 01 18:55:30 GMT 2007
org.apache.poi.hwpf.usermodel
DropCapSpecifier
java.lang.Object
public class DropCapSpecifier extends Object
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
author
Ryan Ackley
Fields Summary
private short
_info
private static BitField
_type
private static BitField
_lines
Constructors Summary
public DropCapSpecifier
(
byte
[] buf,
int
offset)
this(LittleEndian.getShort(buf, offset));
public DropCapSpecifier
(
short
info)
_info = info;
Methods Summary
public
short
toShort
()
return _info;
Java Code Source