/// <summary>
        /// Copy Constructor
        /// </summary>
        public ComplexSampleFrequencyParameters(ComplexSampleFrequencyParameters parameters)
            : base()
        {
            GadgetTitle = parameters.GadgetTitle;
            GadgetDescription = parameters.GadgetDescription;

            WeightVariableName = parameters.WeightVariableName;
            StrataVariableNames = parameters.StrataVariableNames;
            CrosstabVariableName = parameters.CrosstabVariableName;
            UseFieldPrompts = parameters.UseFieldPrompts;
            DrawBorders = parameters.DrawBorders;
            DrawHeaderRow = parameters.DrawHeaderRow;
            DrawTotalRow = parameters.DrawTotalRow;
            RowsToDisplay = parameters.RowsToDisplay;
            Precision = parameters.Precision;
            PercentBarMode = parameters.PercentBarMode;
            PercentBarWidth = parameters.PercentBarWidth;
            ShowAllListValues = parameters.ShowAllListValues;
            SortHighToLow = parameters.SortHighToLow;
            IncludeMissing = parameters.IncludeMissing;
            ShowFrequencyCol = parameters.ShowFrequencyCol;
            ShowPercentCol = parameters.ShowPercentCol;
            ShowCumPercentCol = parameters.ShowCumPercentCol;
            Show95CILowerCol = parameters.Show95CILowerCol;
            Show95CIUpperCol = parameters.Show95CIUpperCol;
            ShowPercentBarsCol = parameters.ShowPercentBarsCol;
            IncludeFullSummaryStatistics = parameters.IncludeFullSummaryStatistics;
            PSUVariableName = parameters.PSUVariableName;
        }
        /// <summary>
        /// Copy Constructor
        /// </summary>
        public ComplexSampleFrequencyParameters(ComplexSampleFrequencyParameters parameters)
            : base()
        {
            GadgetTitle       = parameters.GadgetTitle;
            GadgetDescription = parameters.GadgetDescription;

            WeightVariableName           = parameters.WeightVariableName;
            StrataVariableNames          = parameters.StrataVariableNames;
            CrosstabVariableName         = parameters.CrosstabVariableName;
            UseFieldPrompts              = parameters.UseFieldPrompts;
            DrawBorders                  = parameters.DrawBorders;
            DrawHeaderRow                = parameters.DrawHeaderRow;
            DrawTotalRow                 = parameters.DrawTotalRow;
            RowsToDisplay                = parameters.RowsToDisplay;
            Precision                    = parameters.Precision;
            PercentBarMode               = parameters.PercentBarMode;
            PercentBarWidth              = parameters.PercentBarWidth;
            ShowAllListValues            = parameters.ShowAllListValues;
            SortHighToLow                = parameters.SortHighToLow;
            IncludeMissing               = parameters.IncludeMissing;
            ShowFrequencyCol             = parameters.ShowFrequencyCol;
            ShowPercentCol               = parameters.ShowPercentCol;
            ShowCumPercentCol            = parameters.ShowCumPercentCol;
            Show95CILowerCol             = parameters.Show95CILowerCol;
            Show95CIUpperCol             = parameters.Show95CIUpperCol;
            ShowPercentBarsCol           = parameters.ShowPercentBarsCol;
            IncludeFullSummaryStatistics = parameters.IncludeFullSummaryStatistics;
            PSUVariableName              = parameters.PSUVariableName;
        }