BSky.Statistics.R.UAPackageAPI.changeColMissing C# (CSharp) Method

changeColMissing() private method

private changeColMissing ( string colName, string colProp, List newMisVal, string mistype, ServerDataSource dataSource ) : UAReturn
colName string
colProp string
newMisVal List
mistype string
dataSource BSky.Statistics.Common.ServerDataSource
return BSky.Statistics.Common.UAReturn
        private UAReturn changeColMissing(string colName, string colProp, List<string> newMisVal, string mistype, ServerDataSource dataSource)
        {
            //return (dispatcher.EvaluateToObject(RCommandStrings.SetDatasetMissingProp(colName, colProp, newMisVal, mistype, dataSource), false) as string);
            return (dispatcher.EvaluateToUAReturn(RCommandStrings.SetDatasetMissingProp(colName, colProp, newMisVal, mistype, dataSource)));
        }
UAPackageAPI