Spread WPF 17
GrapeCity.CalcEngine.Expressions Namespace / CalcSheetRangeExpression Class / CalcSheetRangeExpression Constructor / CalcSheetRangeExpression Constructor(ICalcSource,ICalcSource,Int32,Int32,Boolean,Boolean,Boolean)
Starting owner of cell range.
Ending owner of cell range.
Starting row or column coordinate of the range.
Ending row or column coordinate of the range.
Whether the start row or column coordinate is relative or absolute.
Whether the end row or column coordinate is relative or absolute.
true if current range is a full row range, otherwise, current range is a full column range.


In This Topic
    CalcSheetRangeExpression Constructor(ICalcSource,ICalcSource,Int32,Int32,Boolean,Boolean,Boolean)
    In This Topic
    Initializes a new instance of the CalcSheetRangeExpression class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal startSource As ICalcSource, _
       ByVal endSource As ICalcSource, _
       ByVal startBandIndex As Integer, _
       ByVal endBandIndex As Integer, _
       ByVal startBandRelative As Boolean, _
       ByVal endBandRelative As Boolean, _
       ByVal isRowBand As Boolean _
    )
    'Usage
     
    Dim startSource As ICalcSource
    Dim endSource As ICalcSource
    Dim startBandIndex As Integer
    Dim endBandIndex As Integer
    Dim startBandRelative As Boolean
    Dim endBandRelative As Boolean
    Dim isRowBand As Boolean
     
    Dim instance As New CalcSheetRangeExpression(startSource, endSource, startBandIndex, endBandIndex, startBandRelative, endBandRelative, isRowBand)
    public CalcSheetRangeExpression( 
       ICalcSource startSource,
       ICalcSource endSource,
       int startBandIndex,
       int endBandIndex,
       bool startBandRelative,
       bool endBandRelative,
       bool isRowBand
    )

    Parameters

    startSource
    Starting owner of cell range.
    endSource
    Ending owner of cell range.
    startBandIndex
    Starting row or column coordinate of the range.
    endBandIndex
    Ending row or column coordinate of the range.
    startBandRelative
    Whether the start row or column coordinate is relative or absolute.
    endBandRelative
    Whether the end row or column coordinate is relative or absolute.
    isRowBand
    true if current range is a full row range, otherwise, current range is a full column range.
    See Also