Page 1 of 1

How to avoid unnecessary repaints?

Posted: Mon Jan 11, 2010 8:51 am
by enzogupi
Is there a way to programmatically enable/disable refreshing?
I need to do some sequential operations like SetSelection
and ApplySelectionStyle and I wish only a single repaint at the end.

Posted: Mon Jan 11, 2010 5:55 pm
by Sergey Tkachenko
rve.BeginUpdate...rve.EndUpdate

Posted: Wed Jan 13, 2010 12:34 pm
by enzogupi
Sergey Tkachenko wrote:rve.BeginUpdate...rve.EndUpdate
It works... thanks