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

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

            return(false);
        }