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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user