| Visual Basic (Declaration) | |
|---|---|
Public Overridable Sub EndUpdate() | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public virtual void EndUpdate() | |
| C++/CLI | |
|---|---|
public: virtual void EndUpdate(); | |
For an example, refer to BeginUpdate.
This method resumes normal painting for this RasterImageViewer which was disabled by a call to BeginUpdate
If you want to make changes to this RasterImageViewer that require multiple paints, it is best to maintain performance by surrounding your code with BeginUpdate/EndUpdate calls.
Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6
Copy Code