'Declaration Public Function New( _ ByVal startBandIndex As Integer, _ ByVal endBandIndex As Integer, _ ByVal startBandRelative As Boolean, _ ByVal endBandRelative As Boolean, _ ByVal isRowBand As Boolean _ )
'Usage Dim startBandIndex As Integer Dim endBandIndex As Integer Dim startBandRelative As Boolean Dim endBandRelative As Boolean Dim isRowBand As Boolean Dim instance As New CalcRangeExpression(startBandIndex, endBandIndex, startBandRelative, endBandRelative, isRowBand)
public CalcRangeExpression( int startBandIndex, int endBandIndex, bool startBandRelative, bool endBandRelative, bool isRowBand )
Parameters
- 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.