Add support for italics and bold styles

This commit is contained in:
Daan 2013-05-11 16:45:31 -07:00
Родитель 7d4b7161c2
Коммит 268a3f48bb
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -42,6 +42,18 @@ namespace ColorCode
/// <value>The CSS class name.</value>
public string CssClassName { get; set; }
/// <summary>
/// Gets or sets italic font style.
/// </summary>
/// <value>True if italic.</value>
public bool Italic { get; set; }
/// <summary>
/// Gets or sets bold font style.
/// </summary>
/// <value>True if bold.</value>
public bool Bold { get; set; }
/// <summary>
/// Returns a <see cref="System.String"/> that represents this instance.
/// </summary>