Accessing Layout User Text with Python

Hello,

Trying to work out a way to read and write Layout User Text on an external 3dm file.
The idea is to edit information on many layouts and many files at once. For example, editing the author or the date in a text field.

I got as far as retrieving the Views through the File3dm class, but that only gives ViewportInfo, not the RhinoViewport objects that I could get User Text from.

Is it possible to retrieve this data externally at all? Or is it limited to Document User Text?

Regards,
Arturs

import_path = os.path.join(rs.DocumentPath(), "C:\\Users\\User\\Desktop\\test\\2.3dm")
     
    rhinoFile = Rhino.FileIO.File3dm().Read(import_path)
    
    page_views = rhinoFile.AllViews