- Put RO Adjustment code prior to Replace Words - Match 16 Bit
- Replaced logic for Replace Words so that they are replaced sequentially through the text rather than sequentially through the word list. - Added DoTransitionAdjustments that adds hardspaces to Transitions. - Changed the NextUnicode module to ignore Hard Spaces - Added logic to find 'real' spaces in ROs and replace only them. Spaces are also used to terminate RTF commands. Added code to handle "AND Range" Transitions - Use new ToolTip property - Use new MyStepSectionLayoutData - Remove Debug Remove unused code Renamed TwipsPerPage to PointsPerPage Adjusted Superscript offset to match 16-Bit - Added Debug Code to compare 16-Bit and 32-Bit text - Added Debug Code forr Pagination - Added optional code to match 16-Bit pagination Added Ruler for 6 and 7 lines per inch.
This commit is contained in:
@@ -214,9 +214,11 @@ namespace Volian.Print.Library
|
||||
if (visualText.Format.IsUnderline)
|
||||
chk.SetUnderline(font.Color, 0, 0.05F, 0, -.131F, PdfContentByte.LINE_CAP_ROUND); // Relative Based upon font size
|
||||
if (visualText.Format.SuperScript > 0)
|
||||
chk.SetTextRise(.45F * chk.Font.Size);
|
||||
chk.SetTextRise(.25F * chk.Font.Size);
|
||||
else if (visualText.Format.SuperScript < 0)
|
||||
chk.SetTextRise(-.25F * chk.Font.Size);
|
||||
else
|
||||
chk.SetTextRise(0);
|
||||
|
||||
if (_MyFont == null)
|
||||
{
|
||||
|
Reference in New Issue
Block a user