Usage
Typescript Import Format
//To use this interface, import as below.
import {DataGridProviderRemoveOperationEventDetail} from "ojs/ojdatagridprovider";
For additional information visit:
Interface defining the details provided in a DataGridProviderRemoveEvent#detail.
Note that both rows and columns cannot be removed in the same remove event.
        
        
        
         
  Fields
- 
    
    
axis :'row'|'column'
 - 
    
      Axis of the ranges being removed.
- Since:
 - 11.0.0
 
 - 
    
    
ranges :Array<{offset: number, count: number}>
 - 
    
      Ranges being removed in the remove event. Offset is the absolute zero-based index of the start row/column being removed. Count is the total number of rows/columns at that offset being removed.
- Since:
 - 11.0.0
 
 - 
    
    
version :number
 - 
    
      Version of the DataGridProvider specified by version capability to ensure proper event ordering.
- Since:
 - 11.0.0