There is not such properties. You have to call LoadRVF method for loading a rve document into richview. There are also other methods like LoadRTF and LoadText for loading rtf and text.
I have a rvf file that I want to display for the user, so I thought that the TRichView component is the best component to use (rather than the TRichViewEdit component). The user will then decide if they want to email it or edit the file or create a new one. If they want to edit/create the file, then I will use TRichViewEdit.
By the way, I have never used the TRichView component.
Sorry for the confusion in my explanation. Simplified, I have a TRichView component with it's TRVStyle and I want to load a rvf file, Test.Rvf. For unknown reasons, the TRichView remains blank.
sFile := 'Test.rvf';
if FileExists(sFile) then
if RichViewRvf.LoadRvf(sFile) then
ShowMessage('Success');