public override bool SetRecordFloat(string strRecordName, int nRow, int nCol, float fValue) { AFIRecord record = mRecordManager.GetRecord(strRecordName); if (null != record) { record.SetFloat(nRow, nCol, fValue); return(true); } return(false); }