Inheritance: DocViewItem
Example #1
0
 public SummaryTableItem(DocView view, string label, string caption_heading, List<ITableSummary> rows)
 {
     this.view = view;
     this.label = new LabelItem (view, label);
     column_heading = caption_heading;
     foreach (ITableSummary node in rows)
         this.rows.Add (new RowItem (view, node));
 }
Example #2
0
 public RemarksItem(DocView view, XmlElement elem)
 {
     label = new LabelItem (view, "Remarks:");
     contents = new KitchenSinkItem (view, elem);
 }
Example #3
0
 public ViewItem(DocView view, Catalog catalog)
 {
     banner = new BannerItem (view, catalog);
     ns_label = new LabelItem (view, "Namespaces:");
     namespaces = new NSItem [catalog.ChildCount];
     for (int i = 0; i < catalog.ChildCount; i++)
         namespaces [i] = new NSItem (view, catalog [i] as NamespaceNode);
 }