each arrange/grouping class must implement the IOutlookGridGroup interface the Group object will determine for each object in the grid, whether it falls in or outside its group. It uses the IComparable.CompareTo function to determine if the item is in the group.
Inheritance: IOutlookGridGroup
コード例 #1
0
        public virtual object Clone()
        {
            var gr = new OutlookgGridDefaultGroup();

            gr.column    = this.column;
            gr.Val       = this.Val;
            gr.collapsed = this.collapsed;
            gr.text      = this.text;
            gr.height    = this.height;
            return(gr);
        }
コード例 #2
0
 public virtual object Clone()
 {
     var gr = new OutlookgGridDefaultGroup();
     gr.column = this.column;
     gr.Val = this.Val;
     gr.collapsed = this.collapsed;
     gr.text = this.text;
     gr.height = this.height;
     return gr;
 }