| FarPoint.Web.Spread 名前空間 > SheetView クラス : GetChildView メソッド |
'DeclarationPublic Overridable Function GetChildView( _ ByVal row As Integer, _ ByVal relationIndex As Integer _ ) As SheetView
public virtual SheetView GetChildView( int row, int relationIndex )
| 例外 | 説明 |
|---|---|
| System.InvalidOperationException | 指定されたシートは子ビューをサポートしていません。 |
| System.ArgumentException | 指定された行が無効です。行インデックスは 0〜行数の範囲で指定する必要があります。 |
| System.ArgumentException | 指定されたリレーションが無効です。リレーション インデックスは 0〜コレクション内の子リレーション数の範囲で指定する必要があります。 |
FarPoint.Web.Spread.SheetView sv; sv = FpSpread1.ActiveSheetView; sv.GetChildView(0, 0).BackColor = Color.Yellow;
Dim sv As FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView sv.GetChildView(0, 0).BackColor = Color.Yellow