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

editDatagridCell() public method

public editDatagridCell ( string colName, string celdata, int rowindex, ServerDataSource dataSource ) : UAReturn
colName string
celdata string
rowindex int
dataSource BSky.Statistics.Common.ServerDataSource
return BSky.Statistics.Common.UAReturn
        public override UAReturn editDatagridCell(string colName, string celdata, int rowindex, ServerDataSource dataSource)
        {
            UAReturn result;
            result = changeDatagridCell(colName, celdata, rowindex, dataSource);

            return result;
        }
UAPackageAPI