This commit is contained in:
parent
7bbf10f8f0
commit
2977370afd
@ -26,6 +26,13 @@ namespace Volian.Print.Library
|
|||||||
get { return _MyPdfOutline; }
|
get { return _MyPdfOutline; }
|
||||||
set { _MyPdfOutline = value; }
|
set { _MyPdfOutline = value; }
|
||||||
}
|
}
|
||||||
|
private ChkListBoxesHelper _CheckListBoxes = null;
|
||||||
|
private ChkListBoxesHelper CheckListBoxes
|
||||||
|
{
|
||||||
|
get { return _CheckListBoxes; }
|
||||||
|
set { _CheckListBoxes = value; }
|
||||||
|
}
|
||||||
|
|
||||||
private vlnText _TopMessage;
|
private vlnText _TopMessage;
|
||||||
public vlnText TopMessage
|
public vlnText TopMessage
|
||||||
{
|
{
|
||||||
@ -58,6 +65,7 @@ namespace Volian.Print.Library
|
|||||||
{
|
{
|
||||||
MyPageCounts = new PageCounts();
|
MyPageCounts = new PageCounts();
|
||||||
MyTOCPageCounts = new PageCounts();
|
MyTOCPageCounts = new PageCounts();
|
||||||
|
MyTOCPageNums = new Dictionary<string, int>();
|
||||||
_MyPdfWriter = value;
|
_MyPdfWriter = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -433,6 +441,7 @@ namespace Volian.Print.Library
|
|||||||
}
|
}
|
||||||
public PageCounts MyPageCounts = null;
|
public PageCounts MyPageCounts = null;
|
||||||
public PageCounts MyTOCPageCounts = null;
|
public PageCounts MyTOCPageCounts = null;
|
||||||
|
public Dictionary<string, int> MyTOCPageNums = null;
|
||||||
private static Regex regexFindToken = new Regex("{[^{}]*}");
|
private static Regex regexFindToken = new Regex("{[^{}]*}");
|
||||||
private string mySvg_ProcessText(object sender, SvgProcessTextArgs args)
|
private string mySvg_ProcessText(object sender, SvgProcessTextArgs args)
|
||||||
{
|
{
|
||||||
@ -1079,6 +1088,32 @@ namespace Volian.Print.Library
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public class ChkListBoxesHelper : List<ChkListBoxHelper>
|
||||||
|
{
|
||||||
|
private float _yOffsetStart;
|
||||||
|
private float _yOffsetEnd;
|
||||||
|
public ChkListBoxesHelper()
|
||||||
|
: base()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
public void Add(ItemInfo myHls, float yoffStart, float yoffend)
|
||||||
|
{
|
||||||
|
Add(new ChkListBoxHelper());
|
||||||
|
}
|
||||||
|
public void Draw()
|
||||||
|
{
|
||||||
|
foreach (ChkListBoxHelper cb in this)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public class ChkListBoxHelper
|
||||||
|
{
|
||||||
|
public ChkListBoxHelper()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
public class PageBookmarks : List<PageBookmark>
|
public class PageBookmarks : List<PageBookmark>
|
||||||
{
|
{
|
||||||
public PageBookmarks()
|
public PageBookmarks()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user