'Declaration Public Function Get( _ ByVal index As Integer _ ) As AlternatingRow
'使用法 Dim instance As AlternatingRows Dim index As Integer Dim value As AlternatingRow value = instance.Get(index)
public AlternatingRow Get( int index )
例外 | 説明 |
---|---|
System.IndexOutOfRangeException | 指定された交互行のインデックスが0未満か、交互行の数以上です。 |
FarPoint.Win.Spread.AlternatingRow alt; alt = fpSpread1.ActiveSheet.AlternatingRows.Get(0); alt.BackColor = Color.Yellow;
Dim alt As FarPoint.Win.Spread.AlternatingRow alt = FpSpread1.ActiveSheet.AlternatingRows.Get(0) alt.BackColor = Color.Yellow