Interface ISupportInitialize
Defines methods that support initialization in the view.
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.WPF.dll
Syntax
public interface ISupportInitialize
Methods
BeginInit(Boolean)
Signals the object that initialization is starting and so suspends all the data operations in view.
Declaration
void BeginInit(bool isProgrammatic = true)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isProgrammatic | The flag IsProgrammatic helps to resume the UI update while IsInDeferRefresh is true. |
EndInit()
Signals the object that initialization is complete and hence resumes the data operations and reinitialize the view.
Declaration
void EndInit()