Spread WPF 17
GrapeCity.CalcEngine.Expressions Namespace / CalcSheetRangeExpression Class / CalcSheetRangeExpression Constructor / CalcSheetRangeExpression Constructor(ICalcSource,ICalcSource,Int32,Int32,Int32,Int32)
Starting owner of cell range.
Ending owner of cell range.
Starting row coordinate of the range.
Starting column coordinate of the range.
Ending row coordinate of the range.
Ending column coordinate of the range.


In This Topic
    CalcSheetRangeExpression Constructor(ICalcSource,ICalcSource,Int32,Int32,Int32,Int32)
    In This Topic
    Initializes a new instance of the CalcRangeExpression class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal startSource As ICalcSource, _
       ByVal endSource As ICalcSource, _
       ByVal startRow As Integer, _
       ByVal startColumn As Integer, _
       ByVal endRow As Integer, _
       ByVal endColumn As Integer _
    )
    'Usage
     
    Dim startSource As ICalcSource
    Dim endSource As ICalcSource
    Dim startRow As Integer
    Dim startColumn As Integer
    Dim endRow As Integer
    Dim endColumn As Integer
     
    Dim instance As New CalcSheetRangeExpression(startSource, endSource, startRow, startColumn, endRow, endColumn)
    public CalcSheetRangeExpression( 
       ICalcSource startSource,
       ICalcSource endSource,
       int startRow,
       int startColumn,
       int endRow,
       int endColumn
    )

    Parameters

    startSource
    Starting owner of cell range.
    endSource
    Ending owner of cell range.
    startRow
    Starting row coordinate of the range.
    startColumn
    Starting column coordinate of the range.
    endRow
    Ending row coordinate of the range.
    endColumn
    Ending column coordinate of the range.
    See Also