Embedded images
This commit is contained in:
@@ -386,7 +386,11 @@ namespace Volian.Print.Library
|
||||
h.Add(oldTypeName + " to " + cai.TypeName);
|
||||
else
|
||||
{
|
||||
string txt = ItemInfo.ConvertToDisplayText(cai.Text);
|
||||
string txt = null;
|
||||
if ((cai.Text==null || cai.Text=="") && (cai.Type == 20036 || cai.Type == 20037 || cai.Type == 20038 || cai.Type == 20039))
|
||||
txt = "Embedded Image";
|
||||
else
|
||||
txt = ItemInfo.ConvertToDisplayText(cai.Text);
|
||||
if (MyProc.MyDocVersion.MultiUnitCount > 1)
|
||||
{
|
||||
System.Xml.XmlNode nd;
|
||||
@@ -1509,7 +1513,11 @@ namespace Volian.Print.Library
|
||||
h.Add(oldTypeName + " to " + cai.TypeName);
|
||||
else
|
||||
{
|
||||
string txt = ItemInfo.ConvertToDisplayText(cai.Text);
|
||||
string txt = null;
|
||||
if ((cai.Text==null || cai.Text=="") && (cai.Type == 20036 || cai.Type == 20037 || cai.Type == 20038 || cai.Type == 20039))
|
||||
txt = "Embedded Image";
|
||||
else
|
||||
txt = ItemInfo.ConvertToDisplayText(cai.Text);
|
||||
// Add Parent/Child information if applicable
|
||||
// We were doing this for the Chronology report so I added the same logic here for the Summary report
|
||||
if (MyProc.MyDocVersion.MultiUnitCount > 1)
|
||||
|
Reference in New Issue
Block a user