|
IPersistStorage::IsDirty
Indicates whether the object has changed since it was last saved to its
current storage.
HRESULT IsDirty(void);
Return Values
S_OK
The object has changed since it was last saved.
S_FALSE
The object has not changed since the last save.
Comments
This method checks whether an object has changed since it was last saved so
you can avoid losing information in the object that has not yet been saved. The
dirty flag for an object is conditionally cleared in the IPersistFile::Save method.
For example, you could optimize a File:Save operation by calling the IPersistStorage::IsDirty method for each component object and then calling the IPersistStorage::Save method only for those component objects that are dirty.
Notes to Callers
You should treat any error return codes as an indication that the object has
changed. In other words, unless this method explicitly returns S_FALSE, you must
assume that the object needs to be saved.
Notes to Implementors
A container object with one or more contained objects must maintain an
internal dirty flag that reflects any one contained object being dirty. To do this,
the container object should register for data change notifications with each link
or embedding (see IDataObject::DAdvise). Then, the container can maintain its internal dirty flag that it sets when
it receives an IAdviseSink::OnDataChange notification. If the container does not register for data change
notifications, the IPersistFile::IsDirty implementation must call IPersistStorage::IsDirty for each of its contained objects to determine whether they have changed.
A component object can clear its dirty flag whenever it is saved, as long as
the storage saved to is the current working storage after the save. In other
words, the dirty flag is cleared after a successful "Save" or "Save As" operation,
but not after a "Save A Copy As . . ." operation.
See Also
IAdviseSink::OnDataChange, IDataObject::DAdvise, IPersistStorage::Save
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|