Interface ISupportInitialize
Defines methods that support initialization in the view.
Namespace: Syncfusion.UI.Xaml.Data
Assembly: Syncfusion.Data.WinUI.dll
Syntax
public interface ISupportInitializeMethods
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()