Class GridFloatingCellsChangedEventArgs
Provides data about the FloatingCellsChanged event.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public sealed class GridFloatingCellsChangedEventArgs : SyncfusionSuccessEventArgs
Remarks
GridFloatingCellsChangedEventArgs is a custom event argument class used by the FloatingCellsChanged event.
This event is raised by the model to notify all associated views that the grid model changed a range(s) of cells to appear as a floating cell or reset the floating for a range.
This event is raised to make sure all associated views redraw affected display contents.
The change is normally originated by a user typing text into the cell that is larger than the current cell size. The grid checks the preferred cell width of the cell and if it is larger than the current size and the neighboring cell supports floating, the cell will changed to a floating cell.
The Success property indicates if all changes were successfully made to the model. If it is False, the operation was aborted. However, the view contents need to be redrawn no matter if the operation was successful or not.
Properties
Range
Gets the affected cells range.
Declaration
[TraceProperty(true)]
public GridRangeInfo Range { get; }
Property Value
Type |
---|
GridRangeInfo |