Initial Commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
namespace iTextSharp.text.rtf.parser.enumerations {
|
||||
|
||||
/**
|
||||
* Specifies the color theme values for use in Color Tables.
|
||||
*
|
||||
* @author Howard Shank (hgshank@yahoo.com)
|
||||
* @since 2.0.8
|
||||
*/
|
||||
public sealed class RtfColorThemes {
|
||||
public const int THEME_UNDEFINED = -1;
|
||||
public const int THEME_MAINDARKONE = 0;
|
||||
public const int THEME_MAINDARKTWO = 1;
|
||||
public const int THEME_MAINLIGHTONE = 2;
|
||||
public const int THEME_MAINLIGHTTWO = 3;
|
||||
public const int THEME_ACCENTONE = 4;
|
||||
public const int THEME_ACCENTTWO = 5;
|
||||
public const int THEME_ACCENTTHREE = 6;
|
||||
public const int THEME_ACCENTFOUR = 7;
|
||||
public const int THEME_ACCENTFIVE = 8;
|
||||
public const int THEME_ACCENTSIX = 9;
|
||||
public const int THEME_HYPERLINK = 10;
|
||||
public const int THEME_FOLLOWEDHYPERLINK = 11;
|
||||
public const int THEME_BACKGROUNDONE = 12;
|
||||
public const int THEME_TEXTONE = 13;
|
||||
public const int THEME_BACKGROUNDTWO = 14;
|
||||
public const int THEME_TEXTTWO = 15;
|
||||
public const int THEME_MAX = 15;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user