remove method

remove(self, record_number)

Removes the record with the specified record number.

Returns

True if the specified IPTC record is found and removed; otherwise, false.


def remove(self, record_number):
    ...
Parameter Type Description
record_number int The record number.

remove(self, record_number, data_set_number)

Removes the dataSet with the specified record and dataSet number.

Returns

True if the specified IPTC dataSet is found and removed; otherwise, false.


def remove(self, record_number, data_set_number):
    ...
Parameter Type Description
record_number int The record number.
data_set_number int The dataSet number.

See Also