func indexOfField(_ fieldname: String) -> Int

The function indexOfField() returns a number of field with a particular name.
If there is no field with such name, it returns -1.


{
    // your code
    let field = dbf.indexOfField("FIRSTNAME")
    if  field >= 0 
    {
        // your code
    }
}