Interface ISupportUpdating
Defines an interface for classes that support a BeginUpdate / EndUpdate pattern.
Namespace: Syncfusion.Windows.Forms
Assembly: Syncfusion.Shared.Base.dll
Syntax
public interface ISupportUpdating
Properties
Updating
Indicates whether BeginUpdate() was called.
Declaration
bool Updating { get; }
Property Value
Type |
---|
System.Boolean |
Methods
BeginUpdate()
Suspends updating the component. An internal counter will be increased if called multiple times.
Declaration
void BeginUpdate()
EndUpdate()
Resumes updating the component. If BeginUpdate() was called multiple times, an internal counter is decreased.
Declaration
void EndUpdate()