Click or drag to resize

Drawable.Update Method

Update the specified region directly

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public void Update(
	Rectangle region
)

Parameters

region
Type: Eto.Drawing.Rectangle
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