Initial Commit

This commit is contained in:
2023-06-21 12:46:23 -04:00
commit c70248a520
1352 changed files with 336780 additions and 0 deletions

View File

@@ -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;
}
}