com.spire.doc.documents
Enum FontPitch

java.lang.Object
  extended by java.lang.Enum<FontPitch>
      extended by com.spire.doc.documents.FontPitch
All Implemented Interfaces:
java.lang.Comparable<FontPitch>

public enum FontPitch
extends java.lang.Enum<FontPitch>

Represents the font pitch. The pitch indicates if the font is fixed pitch, proportionally spaced, or relies on a default setting.


Enum Constant Summary
Default
          Specifies that no information is available about the pitch of a font.
Fixed
          Specifies that this is a fixed width font.
Variable
          Specifies that this is a proportional width font.
 
Method Summary
 int getValue()
           
 

Enum Constant Detail

Default

public static final FontPitch Default
Specifies that no information is available about the pitch of a font.


Fixed

public static final FontPitch Fixed
Specifies that this is a fixed width font.


Variable

public static final FontPitch Variable
Specifies that this is a proportional width font.

Method Detail

getValue

public int getValue()