NFrame.NFIRecord.QueryInt C# (CSharp) Method

QueryInt() public abstract method

public abstract QueryInt ( int nRow, int nCol ) : System.Int64
nRow int
nCol int
return System.Int64
        public abstract Int64 QueryInt(int nRow, int nCol);
        public abstract double QueryFloat(int nRow, int nCol);

Usage Example

Esempio n. 1
0
        public override Int64 QueryRecordInt(string strRecordName, int nRow, int nCol)
        {
            NFIRecord record = mRecordManager.GetRecord(strRecordName);

            if (null != record)
            {
                return(record.QueryInt(nRow, nCol));
            }

            return(0);
        }