Added an ‘InsertSymbol’ method for Word interface

Support for toggle of underlining for RO’s when used in Word documents
Fixed access of column mode for subsections
Improve table layout on screen (was overlaying table on text or another table)
Fixed problem where RNO text was printing past right margin. Print was using incorrect columnmode for subsection
This commit is contained in:
2013-12-09 14:09:35 +00:00
parent 69fbd162ce
commit 03311ab658
5 changed files with 30 additions and 3 deletions

View File

@@ -1190,7 +1190,9 @@ namespace VEPROMS.CSLA.Library
// check config value on my section, if null/default use Pmode of active format
if (ActiveSection != null)
{
SectionInfo si = ActiveSection as SectionInfo;
SectionInfo si = null;
if (IsSection) si = (SectionInfo) this;
else si = ActiveSection as SectionInfo;
if(si == null)
si = SectionInfo.Get(ActiveSection.ItemID); //ActiveSection as SectionInfo;
if (si != null)