Skip to main content
A newer version of this page is available. .

AgendaView.Invalidate(Rectangle) Method

Invalidates the specified region occupied by the current View (adds it to the control’s update region which will be repainted during the next paint operation), and send a paint message to the scheduler control.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.2.dll

Declaration

public override void Invalidate(
    Rectangle bounds
)

Parameters

Name Type Description
bounds Rectangle

A Rectangle structure specifying the region to update.

Remarks

The Invalidate method does not force a synchronous paint. To force a synchronous paint, call the Update method of the control after calling the Invalidate method.

See Also