/// <summary>
 /// Triggers while DataGrid swiping was started
 /// </summary>
 /// <param name="sender">DataGrid_SwipeStarted event sender </param>
 /// <param name="e">DataGrid_SwipeStarted args e</param>
 private void DataGrid_SwipeStarted(object sender, Syncfusion.SfDataGrid.XForms.SwipeStartedEventArgs e)
 {
     if (this.isSuspend)
     {
         e.Cancel = true;
     }
 }
 void OnSwipeStarted(object sender, Syncfusion.SfDataGrid.XForms.SwipeStartedEventArgs e)
 {
     swipeIndex = e.RowIndex;
     swipeDoc   = (Documents)e.RowData;
 }
 void OnSwipeStarted(object sender, Syncfusion.SfDataGrid.XForms.SwipeStartedEventArgs e)
 {
     swipeIndex_ = e.RowIndex;
     swipeData_  = (ScadenzeInfo)e.RowData;
 }
 void OnSwipeStarted(object sender, Syncfusion.SfDataGrid.XForms.SwipeStartedEventArgs e)
 {
     swipeIndex = e.RowIndex;
     swipeDsp   = (IncassiGridModel)e.RowData;
 }