BSky.Statistics.R.UAPackageAPI.removeDatagridRow C# (CSharp) 메소드

removeDatagridRow() 공개 메소드

public removeDatagridRow ( int rowindex, ServerDataSource dataSource ) : UAReturn
rowindex int
dataSource BSky.Statistics.Common.ServerDataSource
리턴 BSky.Statistics.Common.UAReturn
        public override UAReturn removeDatagridRow(int rowindex, ServerDataSource dataSource)
        {
            UAReturn result;
            result = delDatagridRow(rowindex, dataSource);
            if (result.CommandString != null)
                this.Evaluate(result.CommandString);
            return result;
        }
UAPackageAPI