Spread WPF 17
GrapeCity.CalcEngine.Expressions Namespace / CalcExternalRangeExpression Class / CalcExternalRangeExpression Constructor / CalcExternalRangeExpression Constructor(ICalcSource,Int32,Int32,Int32,Int32,Boolean,Boolean,Boolean,Boolean)
The 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.
Whether the start row coordinate is relative or absolute.
Whether the start column coordinate is relative or absolute.
Whether the end row coordinate is relative or absolute.
Whether end column coordinate is relative or absolute.


In This Topic
    CalcExternalRangeExpression Constructor(ICalcSource,Int32,Int32,Int32,Int32,Boolean,Boolean,Boolean,Boolean)
    In This Topic
    Initializes a new instance of the CalcRangeExpression class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal source As ICalcSource, _
       ByVal startRow As Integer, _
       ByVal startColumn As Integer, _
       ByVal endRow As Integer, _
       ByVal endColumn As Integer, _
       ByVal startRowRelative As Boolean, _
       ByVal startColumnRelative As Boolean, _
       ByVal endRowRelative As Boolean, _
       ByVal endColumnRelative As Boolean _
    )
    'Usage
     
    Dim source As ICalcSource
    Dim startRow As Integer
    Dim startColumn As Integer
    Dim endRow As Integer
    Dim endColumn As Integer
    Dim startRowRelative As Boolean
    Dim startColumnRelative As Boolean
    Dim endRowRelative As Boolean
    Dim endColumnRelative As Boolean
     
    Dim instance As New CalcExternalRangeExpression(source, startRow, startColumn, endRow, endColumn, startRowRelative, startColumnRelative, endRowRelative, endColumnRelative)
    public CalcExternalRangeExpression( 
       ICalcSource source,
       int startRow,
       int startColumn,
       int endRow,
       int endColumn,
       bool startRowRelative,
       bool startColumnRelative,
       bool endRowRelative,
       bool endColumnRelative
    )

    Parameters

    source
    The 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.
    startRowRelative
    Whether the start row coordinate is relative or absolute.
    startColumnRelative
    Whether the start column coordinate is relative or absolute.
    endRowRelative
    Whether the end row coordinate is relative or absolute.
    endColumnRelative
    Whether end column coordinate is relative or absolute.
    See Also