Interface IUpdate
Represents properties and methods of updateable objects.
public interface IUpdate
Properties
- UpdateCount
When implemented by a class, keeps track of calls to
BeginUpdate
andEndUpdate
so that they can be nested.
Methods
- BeginUpdate()
When implemented by a class, prevents object state updating until calling
EndUpdate
method.
- DisableUpdate()
When implemented by a class, prevents object state updating until calling
EnableUpdate
method.
- EnableUpdate()
When implemented by a class, re-enables object state updating, that was turn of by calling
DisableUpdate
method. Using DisableUpdate/EnableUpdate to prevent notifying about updating the object state.
- EndUpdate()
When implemented by a class, re-enables object state updating, that was turn of by calling
BeginUpdate
method.
- Update()
When implemented by a class, updates an object state.