FileDocCategorySizeDatePackage
DropCapSpecifier.javaAPI DocApache Poi 3.0.11795Mon Jan 01 18:55:30 GMT 2007org.apache.poi.hwpf.usermodel

DropCapSpecifier

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 shorttoShort()

    return _info;