Class GridEndUpdateRequestEventArgs
Provides data about the EndUpdateRequest event.
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public sealed class GridEndUpdateRequestEventArgs : SyncfusionEventArgs
Remarks
GridFloatingCellsChangedEventArgs is a custom event argument class used by the EndUpdateRequest event.
This event is raised by the model when EndUpdate() is programmatically called and there are no pending BeginUpdate() calls. When there are several calls, you have to call as many times EndUpdate as you called BeginUpdate before this event is raised.
This event is raised to make sure all associated views update their display contents by completing any pending paint operations.
Constructors
GridEndUpdateRequestEventArgs()
Initializes the new instances of the GridEndUpdateRequestEventArgs class.
Declaration
public GridEndUpdateRequestEventArgs()
GridEndUpdateRequestEventArgs(Boolean)
Initializes the new instances of the GridEndUpdateRequestEventArgs class.
Declaration
public GridEndUpdateRequestEventArgs(bool value)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | value | The value of the originating EndUpdate() call. |
Properties
Value
Gets or sets a value indicating whether the value of the originating EndUpdate() call.
Declaration
[TraceProperty(true)]
public bool Value { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | True if display should be updated immediately; False if pending paint operations should be discarded. |