Search
SortForm Class
Remarks See Also
 






Represents a form used to define sorting options for a cell range.

Namespace: MindFusion.Spreadsheet.WinForms
Assembly: MindFusion.Spreadsheet.WinForms.StandardForms

 Syntax

C#  Copy Code

public class SortForm : Form

Visual Basic  Copy Code

Public Class SortForm
    Inherits Form

 Remarks

This form can be used to sort the data in a worksheet. To use the form, create an instance of the SortForm class by providing the target worksheet and the cell range to sort, and call the ShowDialog method. To perform the sort using the settings entered by the user, call the form's Sort method. The following image shows the form:

 Inheritance Hierarchy

System.Object
    System.MarshalByRefObject
        System.ComponentModel.Component
            System.Windows.Forms.Control
                System.Windows.Forms.ScrollableControl
                    System.Windows.Forms.ContainerControl
                        System.Windows.Forms.Form
                            MindFusion.Spreadsheet.WinForms.SortForm

 See Also