Implement styling of abnormal values.

- NEU: Auszeichnung pathologischer Werte kann eingestellt werden.
This commit is contained in:
Daniel Kraus
2015-08-24 23:17:49 +02:00
parent b8b96af9bb
commit cde32f0a7e
13 changed files with 170 additions and 11 deletions

View File

@ -202,6 +202,12 @@ namespace zaaReloaded2.Formatter
case "</b>":
sel.Font.Bold = 0;
break;
case "<i>":
sel.Font.Italic = 1;
break;
case "</i>":
sel.Font.Italic = 0;
break;
case "</style>":
sel.ClearCharacterStyle();
break;