Example #1
0
        internal SLTop10 Clone()
        {
            SLTop10 t = new SLTop10();
            t.Top = this.Top;
            t.Percent = this.Percent;
            t.Val = this.Val;
            t.FilterValue = this.FilterValue;

            return t;
        }
Example #2
0
        internal SLTop10 Clone()
        {
            SLTop10 t = new SLTop10();

            t.Top         = this.Top;
            t.Percent     = this.Percent;
            t.Val         = this.Val;
            t.FilterValue = this.FilterValue;

            return(t);
        }
 private void SetAllNull()
 {
     this.Filters = new SLFilters();
     this.HasFilters = false;
     this.Top10 = new SLTop10();
     this.HasTop10 = false;
     this.CustomFilters = new SLCustomFilters();
     this.HasCustomFilters = false;
     this.DynamicFilter = new SLDynamicFilter();
     this.HasDynamicFilter = false;
     this.ColorFilter = new SLColorFilter();
     this.HasColorFilter = false;
     this.IconFilter = new SLIconFilter();
     this.HasIconFilter = false;
     this.ColumnId = 1;
     this.HiddenButton = null;
     this.ShowButton = null;
 }