B2023-040: WCN – And sub-steps pagination
This commit is contained in:
parent
9c3715b6ed
commit
0f35d403d2
Binary file not shown.
@ -1440,6 +1440,14 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _AdjFirstSecDocStylesInPagination, "@AdjFirstSecDocStylesInPagination");
|
return LazyLoad(ref _AdjFirstSecDocStylesInPagination, "@AdjFirstSecDocStylesInPagination");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private LazyLoad<bool> _AdjustLargeImage;
|
||||||
|
public bool AdjustLargeImage
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _AdjustLargeImage, "@AdjustLargeImage");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region VersionIdText
|
#region VersionIdText
|
||||||
|
@ -4181,13 +4181,18 @@ namespace Volian.Print.Library
|
|||||||
Height = ic.Image_Height;
|
Height = ic.Image_Height;
|
||||||
|
|
||||||
// B2022-041: extra whitespace after resized image. Make same adjustment here that gets made in ParagrphToPdf
|
// B2022-041: extra whitespace after resized image. Make same adjustment here that gets made in ParagrphToPdf
|
||||||
float mult = 1.0F;
|
// B2023-040: WCN pagination changed for And steps with large image after - add format flag for
|
||||||
if (Width > (vlnParagraph.wMax - 12)) mult = (vlnParagraph.wMax - 24) / Width;
|
// Barakah
|
||||||
if (Height > (vlnParagraph.hMax - 36)) mult = Math.Min(mult, (vlnParagraph.hMax - 36) / Height);
|
if (MyItemInfo.ActiveFormat.PlantFormat.FormatData.PrintData.AdjustLargeImage)
|
||||||
if (mult < 1.0F)
|
|
||||||
{
|
{
|
||||||
Width = Width * mult;
|
float mult = 1.0F;
|
||||||
Height = Height * mult;
|
if (Width > (vlnParagraph.wMax - 12)) mult = (vlnParagraph.wMax - 24) / Width;
|
||||||
|
if (Height > (vlnParagraph.hMax - 36)) mult = Math.Min(mult, (vlnParagraph.hMax - 36) / Height);
|
||||||
|
if (mult < 1.0F)
|
||||||
|
{
|
||||||
|
Width = Width * mult;
|
||||||
|
Height = Height * mult;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
yoff = AdjustLocIfLongerRNO(itemInfo, yoff, yoffRightParent);
|
yoff = AdjustLocIfLongerRNO(itemInfo, yoff, yoffRightParent);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user