PowerTools SPREAD for Windows Forms 8.0J
Move メソッド (SheetViewCollection)


SheetView の現在のインデックス
SheetView の新しいインデックス
指定した SheetView をコレクション内の異なるインデックスに移動します。
構文
'Declaration
 
Public Sub Move( _
   ByVal from As Integer, _
   ByVal to As Integer _
) 
'使用法
 
Dim instance As SheetViewCollection
Dim from As Integer
Dim to As Integer
 
instance.Move(from, to)
public void Move( 
   int from,
   int to
)

パラメータ

from
SheetView の現在のインデックス
to
SheetView の新しいインデックス
次のサンプル コードは、指定した位置からシートを移動します。
fpSpread1.Sheets.Count = 5; 
FarPoint.Win.Spread.SheetViewCollection sheet; 
sheet = fpSpread1.Sheets; 
sheet.Move(0, 2);
FpSpread1.Sheets.Count = 5
Dim sheet As FarPoint.Win.Spread.SheetViewCollection
sheet = FpSpread1.Sheets
sheet.Move(0, 2)
参照

SheetViewCollection クラス
SheetViewCollection メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.