FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス : GetChildWorkbooks メソッド |
'Declaration Public Function GetChildWorkbooks() As ArrayList
'使用法 Dim instance As SpreadView Dim value As ArrayList value = instance.GetChildWorkbooks()
public ArrayList GetChildWorkbooks()
階層内の子ワークブック(SpreadView オブジェクト)の ArrayList
FarPoint.Win.Spread.SpreadView sv, sv1; ArrayList al; sv = fpSpread1.GetRootWorkbook() al = sv.GetChildWorkbooks(); sv1 = (FarPoint.Win.Spread.SpreadView) al[0]; sv1.GetSheetView().ActiveColumn.BackColor = Color.Yellow
Dim sv, sv1 As FarPoint.Win.Spread.SpreadView Dim al As ArrayList sv = FpSpread1.GetRootWorkbook() al = sv.GetChildWorkbooks() sv1 = CType(al(0), FarPoint.Win.Spread.SpreadView) sv1.GetSheetView().ActiveColumn.BackColor = Color.Yellow