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

TcxLookAndFeel.BeginUpdate Method

Postpones all control repaint operations that reflect look & feel setting changes.

Declaration

procedure BeginUpdate;

Remarks

Every time a Kind, NativeStyle, ScrollbarMode, ScrollMode, RenderMode, or SkinName property value changes, the control redraws itself to reflect the change. Enclose multiple look & feel setting changes between the BeginUpdate and EndUpdate procedure call to avoid excessive repaint operations.

Note

The OnChanged event never occurs between BeginUpdate and EndUpdate calls. Ensure that every BeginUpdate procedure call is followed by an EndUpdate call, even if an exception occurs.

See Also