示例#1
0
        public override bool SetRecordInt(string strRecordName, int nRow, int nCol, Int64 nValue)
        {
            AFIRecord record = mRecordManager.GetRecord(strRecordName);

            if (null != record)
            {
                record.SetInt(nRow, nCol, nValue);
                return(true);
            }

            return(false);
        }