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

SetColProperty() private method

private SetColProperty ( ServerDataSource dataSource, string colName, string colProp, string newValue ) : UAReturn
dataSource BSky.Statistics.Common.ServerDataSource
colName string
colProp string
newValue string
return BSky.Statistics.Common.UAReturn
        private UAReturn SetColProperty(ServerDataSource dataSource, string colName, string colProp, string newValue)//Anil added
        {
            //return (dispatcher.EvaluateToObject(RCommandStrings.SetDataFrameColumnProp(dataSource, colName, colProp, newValue), false) as string);
            return (dispatcher.EvaluateToUAReturn(RCommandStrings.SetDataFrameColumnProp(dataSource, colName, colProp, newValue)));

        }
UAPackageAPI