Extract Property

Hello,
Is it possible to extract a property (BodyRtf) from OlmStorage instead of extracting whole message?
Now using:
Dim MyRTF As String = OlmStorage.ExtractMapiMessage.(MyMSG).BodyRtf
Using the above method will not dispose the extracted message after accessing .BodyRtf property, right?
Thanks :slight_smile:

@australian.dev.nerds,

Is it possible to extract a property (BodyRtf) from OlmStorage instead of extracting whole message?

Unfortunately, the OLM format doesn’t allows to get the BodyRtf property so easily without extracting the message itself.

Using the above method will not dispose the extracted message after accessing .BodyRtf property, right?

Yes, that’s right.

Thank you.