バージョン

WorksheetRegion コンストラクタ

WorksheetRegion クラスの新しいインスタンスを初期化します。
シンタックス
'宣言
 
Public Function New( _
   ByVal worksheet As Worksheet, _
   ByVal firstRow As Integer, _
   ByVal firstColumn As Integer, _
   ByVal lastRow As Integer, _
   ByVal lastColumn As Integer _
)
public WorksheetRegion( 
   Worksheet worksheet,
   int firstRow,
   int firstColumn,
   int lastRow,
   int lastColumn
)

パラメータ

worksheet
領域が置かれるワークシート。
firstRow
領域の最初の行のインデックス。
firstColumn
領域の最初の列のインデックス。
lastRow
領域の最後の行のインデックス。
lastColumn
領域の最後の列のインデックス。
例外
例外解説
System.ArgumentNullExceptionworksheet は null です。
System.InvalidOperationExceptionfirstRowlastRow より大きいか、firstColumnlastColumn よりも大きいです。
System.ArgumentOutOfRangeException 指定された行または列インデックスは、有効な行または列領域の外にあります。
参照