Search
Selection.Add Method (Int32, Int32, Int32, Int32)
See Also
 






Adds the range of cells at the specified coordinates to the selection.

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

 Syntax

C#  Copy Code

public void Add (
    int column1,
    int row1,
    int column2,
    int row2
)

Visual Basic  Copy Code

Public Sub Add( _
    column1 As Integer, _
    row1 As Integer, _
    column2 As Integer, _
    row2 As Integer _
)

 Parameters

column1

The leftmost column of the range to select.

row1

The topmost row of the range to select.

column2

The rightmost column of the range to select.

row2

The bottommost row of the range to select.

 See Also