IRichEditOle::SaveCompleted method (richole.h)

Indicates when the most recent save operation has been completed and that the rich edit control should hold onto a different storage for the object.

Syntax

HRESULT SaveCompleted(
  LONG      iob,
  LPSTORAGE lpstg
);

Parameters

iob

Type: LONG

Index of the object whose storage is being specified. If this parameter is REO_IOB_SELECTION, the selected object is used.

lpstg

Type: LPSTORAGE

New storage for the object. If the storage is not NULL, the rich edit control releases any storage it is currently holding for the object and uses this new storage instead.

Return value

Type: HRESULT

Returns S_OK on success, or a failure code otherwise. E_INVALIDARG is returned if the index is invalid.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header richole.h
DLL Msftedit.dll

See also

IRichEditOle