Add control elements for columns.
- NEU: Steuer-Elemente für Spalten.
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user