Interface PeerConstants
public interface PeerConstants
{
  // Fields
  public final static int COLORTYPE_NONE;
  public final static int COLORTYPE_NORMAL;
  public final static int COLORTYPE_SYSCOLOR;
  public final static int COLORTYPE_TEXTURE;
  public final static int COLORTYPE_UNKNOWN;
  public final static int ETO_CLIPPED;
  public final static int ETO_OPAQUE;
  public final static int ETO_WIDECHAR;
}
This interface defines basic color and text out constants used throughout the com.ms.fx package. 
- COLORTYPE_NONE
- No color type is defined. 
- COLORTYPE_NORMAL
- The color is a normal color type. 
- COLORTYPE_SYSCOLOR
- The color is a reserved system color. 
- COLORTYPE_TEXTURE
- The color is a texture color type (for example, an FxTexture object). 
- COLORTYPE_UNKNOWN
- An unknown color type. 
- ETO_CLIPPED
- An Extended Text Out constant that specifies that text is clipped to a rectangle. 
- ETO_OPAQUE
- An Extended Text Out constant that specifies that the current background color fills the rectangle. 
- ETO_WIDECHAR
- An Extended Text Out constant that specifies that the text is comprised of wide characters.