Prompts the user to insert cells within a worksheet.
Namespace: MindFusion.Spreadsheet.Wpf.StandardForms
Assembly: MindFusion.Spreadsheet.Wpf.StandardForms
C#
![]() |
---|
public class DeleteCellsForm : Window, INotifyPropertyChanged, IComponentConnector |
Visual Basic
![]() |
---|
Public Class DeleteCellsForm |
This form can be used to prompt the user to delete cells from a worksheet. To use the form, create an instance of the DeleteCellsForm class and call the ShowDialog method. The user's choice can be obtained from the Result property. The following image shows the form:
The code below demonstrates how to use the form to delete cells in an existing cell range.
C#
![]() |
---|
var form = new DeleteCellsForm(); |
Visual Basic
![]() |
---|
Dim form = New DeleteCellsForm() |
System.Object
System.Windows.Threading.DispatcherObject
System.Windows.DependencyObject
System.Windows.Media.Visual
System.Windows.UIElement
System.Windows.FrameworkElement
System.Windows.Controls.Control
System.Windows.Controls.ContentControl
System.Windows.Window
MindFusion.Spreadsheet.Wpf.StandardForms.DeleteCellsForm