Пример #1
0
 /// <summary>
 ///  Constructs a Section with the specified header
 /// </summary>
 /// <param name="caption">
 /// The header to display
 /// </param>
 public Section(string caption)
     : base(caption)
 {
     Adapter = new SectionAdapter(this);
 }
Пример #2
0
 /// <summary>
 ///  Constructs a Section without header or footers.
 /// </summary>
 public Section()
     : this("")
 {
     Adapter = new SectionAdapter(this);
 }