Update the specified region directly
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void Update(
Rectangle region
)
Public Sub Update (
region As Rectangle
)
member Update :
region : Rectangle -> unit
Parameters
- region
- Type: Eto.DrawingRectangle
Region to update the control
Remarks
This forces the region to be painted immediately. On some platforms, this will be similar to calling
Invalidate(Rectangle), and queue the repaint instead of blocking until it is painted.
See Also