MESCIUS SPREAD for Windows Forms 15.0J
MultiOptionCellType コンストラクタ(MultiOptionCellType)
使用例 

コピー元のマルチオプション セル型
指定したセル型から新しいコピーを作成します(コピーコンストラクター)。
構文
'宣言
 
Public Function New( _
   ByVal g As MultiOptionCellType _
)
public MultiOptionCellType( 
   MultiOptionCellType g
)

パラメータ

g
コピー元のマルチオプション セル型
使用例
次のサンプルコードは、マルチオプション型セルを作成します。
FarPoint.Win.Spread.CellType.MultiOptionCellType multcell = new FarPoint.Win.Spread.CellType.MultiOptionCellType();           
multcell.Items = new String[] { "One", "Two", "Three" };            
fpSpread1.ActiveSheet.Cells[0, 0].CellType = multcell;
FarPoint.Win.Spread.CellType.MultiOptionCellType multcell1 = new FarPoint.Win.Spread.CellType.MultiOptionCellType(multcell);
fpSpread1.ActiveSheet.Cells[0, 1].CellType = multcell1;
Dim multcell As New FarPoint.Win.Spread.CellType.MultiOptionCellType()    
multcell.Items = new String() { "One", "Two", "Three" }
fpSpread1.ActiveSheet.Cells(0, 0).CellType = multcell
Dim multcell1 As New FarPoint.Win.Spread.CellType.MultiOptionCellType(multcell)
fpSpread1.ActiveSheet.Cells(0, 1).CellType = multcell1
参照

MultiOptionCellType クラス
MultiOptionCellType メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.