protected PrintPartDefinitionAttribute(PrintAppendixes printAppendixes, PageRange pages)
     : this(printAppendixes)
 {
     AddRange(pages);
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="PrintOnPageAttribute" /> class regarding the specified range and print
 ///     parts
 /// </summary>
 /// <param name="printAppendixes">The print parts that are defined by this attribute.</param>
 /// <param name="pages">The page range where the print parts are defined</param>
 public PrintOnPageAttribute(PrintAppendixes printAppendixes, PageRange pages)
     : base(printAppendixes, pages)
 {
 }
Exemplo n.º 3
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="ExcludeFromPageAttribute" /> class regarding the specified range and
 ///     print parts
 /// </summary>
 /// <param name="printAppendixes">The print parts that are defined by this attribute.</param>
 /// <param name="pages">The page range where the print parts are not defined</param>
 public ExcludeFromPageAttribute(PrintAppendixes printAppendixes, PageRange pages)
     : base(printAppendixes, pages)
 {
 }