The bookmark property should not be picked apart, since as you found out it is undocumented. It should only be used to synchronize a form and a recordset:
with me.recordsetclone
.findfirst "PK=123"
me.bookmark = .bookmark 'moves the form to that record.
end with
-Tom. Microsoft Access MVP