'宣言 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 )
| 例外 | 解説 |
|---|---|
| System.ArgumentNullException | worksheet は null です。 |
| System.InvalidOperationException | firstRow は lastRow より大きいか、firstColumn は lastColumn よりも大きいです。 |
| System.ArgumentOutOfRangeException | 指定された行または列インデックスは、有効な行または列領域の外にあります。 |