Summary description for OutlookBarItemCollection.
Inheritance: IEnumerable
示例#1
0
 public OutlookBarBand()
 {
     // Constructor for designer support
     items = new OutlookBarItemCollection();
     if( this.Site!= null)
         Name = Site.Name;
     else
         Name = null;
 }
示例#2
0
 public OutlookBarBand(string text)
 {
     this.Text = text;
     // When using the constructor that just use the name,
     // it means that this band will have child items
     items = new OutlookBarItemCollection();
 }