Interface IDetailsViewNotifier
Interface used to hold the information related to the Details View Notify Listener and suspend, resume methods.
Namespace: Syncfusion.UI.Xaml.DataGrid
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public interface IDetailsViewNotifierProperties
IsListenerSuspended
Gets a value indicating whether the NotifyListener suspended or not.
Declaration
bool IsListenerSuspended { get; }Property Value
| Type | 
|---|
| System.Boolean | 
NotifyListener
Gets the IDetailsViewNotifyListener for NotifyListener.
Declaration
IDetailsViewNotifyListener NotifyListener { get; }Property Value
| Type | 
|---|
| IDetailsViewNotifyListener | 
Methods
ResumeNotifyListener()
Resumes the Notify Listener.
Declaration
void ResumeNotifyListener()SetNotifierListener(IDetailsViewNotifyListener)
Sets the Notify listener.
Declaration
void SetNotifierListener(IDetailsViewNotifyListener notifyListener)Parameters
| Type | Name | Description | 
|---|---|---|
| IDetailsViewNotifyListener | notifyListener | The corresponding IDetailsViewNotifyListener | 
SuspendNotifyListener()
Suspends the Notify Listener.
Declaration
void SuspendNotifyListener()