Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / Reset Method
Example


In This Topic
    Reset Method (FpSpread)
    In This Topic
    Resets the component to its original state.
    Resets the component to its original state.
    Overload List
    OverloadDescription
    Resets the component to its original state.  
    Example
    This example resets the entire Spread component to its default settings.
    FarPoint.Win.Spread.FpSpread fpSpread1 = new FarPoint.Win.Spread.FpSpread();
    FarPoint.Win.Spread.SheetView shv = new FarPoint.Win.Spread.SheetView();
    DialogResult dlg;
    fpSpread1.Location = new Point(10, 10);
    fpSpread1.Height = 200;
    fpSpread1.Width = 400;
    Controls.Add(fpSpread1);
    fpSpread1.Sheets.Add(shv);
    fpSpread1.ActiveSheet.ColumnCount = 4;
    fpSpread1.ActiveSheet.RowCount = 4;
    dlg = MessageBox.Show("Do you want to reset the control??", "Reset", MessageBoxButtons.YesNo);
    if (dlg == DialogResult.Yes)
    {
         fpSpread1.Reset();
    }
    Dim fpSpread1 As New FarPoint.Win.Spread.FpSpread()
    Dim shv As New FarPoint.Win.Spread.SheetView()
    Dim dlg As DialogResult
    fpSpread1.Location = New Point(10, 10)
    fpSpread1.Height = 200
    fpSpread1.Width = 400
    Controls.Add(fpSpread1)
    fpSpread1.Sheets.Add(shv)
    fpSpread1.ActiveSheet.ColumnCount = 4
    fpSpread1.ActiveSheet.RowCount = 4
    dlg = MessageBox.Show("Do you want to reset the control??", "Reset", MessageBoxButtons.YesNo)
    If dlg = DialogResult.Yes Then
         fpSpread1.Reset()
    End If
    See Also