[Visual Basic 6.0] Sub Save(
ByVal pstm As IStream, _
ByVal fClearDirty As Long _
)
[Visual Basic .NET] Public Sub Save ( _ ByVal pstm As IStream, _ ByVal fClearDirty As Integer _ )
[C#] public void Save ( IStream pstm, int fClearDirty );
[Java] public void save ( IStream pstm, int fClearDirty ) throws IOException, AutomationException
[C++] HRESULT Save( IStream* pstm, long fClearDirty );
Parameters
pstm [in]
pstm is a parameter of type IStream
fClearDirty [in]
fClearDirty is a parameter of type long
IPersistStream is a Microsoft interface. Please refer to MSDN for information about this interface.