Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PdfList"/> class.
 /// </summary>
 /// <param name="textLines">The text lines.</param>
 /// <param name="listType">Type of the list.</param>
 /// <param name="hyperlinkType">Type of the hyperlink.</param>
 public PdfList(IEnumerable <TextLine> textLines, PdfListType listType, HyperlinkType hyperlinkType)
 {
     _textLines     = textLines;
     _listType      = listType;
     _hyperlinkType = hyperlinkType;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PdfList"/> class.
 /// </summary>
 /// <param name="textLines">The text lines.</param>
 /// <param name="listType">Type of the list.</param>
 public PdfList(IEnumerable <TextLine> textLines, PdfListType listType)
 {
     _textLines = textLines;
     _listType  = listType;
 }