replace_data method

replace_data(offset, count, data)

Replaces the characters starting at the specified offset with the specified string.

def replace_data(self, offset, count, data):
    ...
Parameter Type Description
offset int The offset.
count int The count.
data str The content data.

See Also