All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.randomcodeorg.simplepdf.TextDecoration Maven / Gradle / Ivy

package com.github.randomcodeorg.simplepdf;

/**
 * An enumeration that is used to define different text styles.
 * @author Marcel Singer
 *
 */
public enum TextDecoration {
	/**
	 * The text will be rendered normally.
	 */
	NONE,
	/**
	 * The text will be rendered bold.
	 */
	BOLD,
	/**
	 * The text will be rendered underlined.
	 */
	UNDERLINE,
	/**
	 * The text will be rendered italic.
	 */
	ITALIC,
	/**
	 * The text will be rendered ruled out.
	 */
	STRIKE_OUT
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy