Process page number transitions & change bar location
B2015-073: Code for processing page number transitions Allow for step box across page break.
This commit is contained in:
@@ -112,7 +112,17 @@ namespace Volian.Print.Library
|
||||
if (DefBox != null && DefBox != vlnBox.DOUBLEboxHLS)
|
||||
{
|
||||
cb.SetLineWidth(.6F);
|
||||
cb.Rectangle(left, bottom, right - left, Height * MyPageHelper.YMultiplier);
|
||||
float lheight = Height;
|
||||
if (top > yTopMargin)
|
||||
{
|
||||
lheight -= (top - yTopMargin);
|
||||
}
|
||||
if (bottom < yBottomMargin)
|
||||
{
|
||||
lheight += (bottom - yBottomMargin);
|
||||
bottom = yBottomMargin;
|
||||
}
|
||||
cb.Rectangle(left, bottom, right - left, lheight * MyPageHelper.YMultiplier);
|
||||
}
|
||||
else if (DefBox == vlnBox.DOUBLEboxHLS)
|
||||
{
|
||||
|
Reference in New Issue
Block a user