()
| 158 | } |
| 159 | |
| 160 | private Font GetFont() |
| 161 | { |
| 162 | Font font; |
| 163 | if (Bold) |
| 164 | font = Italic ? Font.GetBold().GetItalic().GetFont() : Font.GetBold().GetFont(); |
| 165 | else if (Italic) |
| 166 | font = Font.GetItalic().GetFont(); |
| 167 | else |
| 168 | font = Font.GetFont(); |
| 169 | return font; |
| 170 | } |
| 171 | |
| 172 | private string ConvertedText() |
| 173 | { |