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

SetColMeasure() private method

private SetColMeasure ( ServerDataSource dataSource, string colName, string colProp, string newValue, List colLevels ) : UAReturn
dataSource BSky.Statistics.Common.ServerDataSource
colName string
colProp string
newValue string
colLevels List
return BSky.Statistics.Common.UAReturn
        private UAReturn SetColMeasure(ServerDataSource dataSource, string colName, string colProp, string newValue, List<string> colLevels)
        {
            //return (dispatcher.EvaluateToObject(RCommandStrings.SetDatasetMeasureProp(colName, newValue, colLevels, dataSource ), false) as string);
            return (dispatcher.EvaluateToUAReturn(RCommandStrings.SetDatasetMeasureProp(colName, newValue, colLevels, dataSource)));
        }
UAPackageAPI