internal SLPivotFilter Clone()
        {
            SLPivotFilter pf = new SLPivotFilter();
            pf.Field = this.Field;
            pf.MemberPropertyFieldId = this.MemberPropertyFieldId;
            pf.Type = this.Type;
            pf.EvaluationOrder = this.EvaluationOrder;
            pf.Id = this.Id;
            pf.MeasureHierarchy = this.MeasureHierarchy;
            pf.MeasureField = this.MeasureField;
            pf.Name = this.Name;
            pf.Description = this.Description;
            pf.StringValue1 = this.StringValue1;
            pf.StringValue2 = this.StringValue2;

            pf.AutoFilter = this.AutoFilter.Clone();

            return pf;
        }
Example #2
0
        internal SLPivotFilter Clone()
        {
            SLPivotFilter pf = new SLPivotFilter();

            pf.Field = this.Field;
            pf.MemberPropertyFieldId = this.MemberPropertyFieldId;
            pf.Type            = this.Type;
            pf.EvaluationOrder = this.EvaluationOrder;
            pf.Id = this.Id;
            pf.MeasureHierarchy = this.MeasureHierarchy;
            pf.MeasureField     = this.MeasureField;
            pf.Name             = this.Name;
            pf.Description      = this.Description;
            pf.StringValue1     = this.StringValue1;
            pf.StringValue2     = this.StringValue2;

            pf.AutoFilter = this.AutoFilter.Clone();

            return(pf);
        }