NFrame.NFIRecord.SetFloat C# (CSharp) Method

SetFloat() public abstract method

public abstract SetFloat ( int nRow, int nCol, double value ) : bool
nRow int
nCol int
value double
return bool
        public abstract bool SetFloat(int nRow, int nCol, double value);
        public abstract bool SetString(int nRow, int nCol, string value);

Usage Example

Esempio n. 1
0
        public override bool SetRecordFloat(string strRecordName, int nRow, int nCol, float fValue)
        {
            NFIRecord record = mRecordManager.GetRecord(strRecordName);

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

            return(false);
        }
All Usage Examples Of NFrame.NFIRecord::SetFloat