The delete method of the Fields class deletes an object from a Fields collection. delete has the following signatures:
delete(int n)
delete(String s)
Deletes an object from a Fields collection.
public void delete(int n);
n | Designates the ordinal position of the Field object to delete. |
Deletes an object from a Fields collection.
public void delete(String s);
s | Designates the name of the Field object to delete. |