Version

RepeatTitleRange Constructor

Creates a new RepeatTitleRange instance.
Syntax
'Declaration
 
Public Function New( _
   ByVal startIndex As Integer, _
   ByVal endIndex As Integer _
)
public RepeatTitleRange( 
   int startIndex,
   int endIndex
)

Parameters

startIndex
The index of the first row or column in the range.
endIndex
The index of the last row or column in the range.
Exceptions
ExceptionDescription
System.ArgumentExceptionOccurs when either startIndex or endIndex is less than 0.
Remarks

The order of the startIndex and endIndex does not matter. In other words, if startIndex is greater than endIndex, they will be swapped when they are stored.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also