public override bool SetProperty(string strPropertyName, NFDataList varData)
 {
     if (mhtProperty.ContainsKey(strPropertyName))
     {
         NFIProperty xProperty = (NFCProperty)mhtProperty[strPropertyName];
         if (null != xProperty)
         {
             xProperty.SetData(varData.GetData(0));
         }
     }
     return(true);
 }
Esempio n. 2
0
        public override NFDataList.TData QueryRowCol(int nRow, int nCol)
        {
            if (mhtRecordVec.ContainsKey(nRow))
            {
                NFDataList dataList = (NFDataList)mhtRecordVec[nRow];
                if (dataList != null)
                {
                    return(dataList.GetData(nCol));
                }
            }

            return(null);
        }