Reputation: 124
I have a NotesNoteCollection containing the replication entries for a database. The field $ReplFormula is of type Formula (1536). Is there a way from a script using COM to convert that formula into a text representation?
Upvotes: 0
Views: 42
Reputation: 12060
You need to use a DXLexporter to convert the document to xml. Then you can read the formula from the resulting xml. There is no other way to do this
You can do this in memory by defining a stream as target for the export.
Upvotes: 2