Add control elements for columns.

- NEU: Steuer-Elemente für Spalten.
This commit is contained in:
Daniel Kraus
2015-08-09 20:54:43 +02:00
parent 5833e0fcb7
commit a009c1ab39
13 changed files with 192 additions and 42 deletions

View File

@ -119,13 +119,14 @@ namespace zaaReloaded2.Formatter
if (Document != null)
{
Document.ActiveWindow.Selection.ClearCharacterDirectFormatting();
Document.ActiveWindow.Selection.ClearParagraphDirectFormatting();
Selection s = Document.ActiveWindow.Selection;
s.ClearCharacterDirectFormatting();
s.ClearParagraphDirectFormatting();
if (!string.IsNullOrEmpty(ParagraphStyle))
{
Document.ActiveWindow.Selection.set_Style(ParagraphStyle);
s.set_Style(ParagraphStyle);
}
Document.ActiveWindow.Selection.Range.Text = _buffer.ToString();
s.Range.Text = _buffer.ToString();
}
if (Parent != null)
{