MESCIUS SPREAD for Windows Forms 15.0J
RemoveColumns メソッド (IRangeSupport)
使用例 

列の削除を開始する列インデックス
削除する列数
指定した開始位置から列を削除します。
構文
'宣言
 
Sub RemoveColumns( _
   ByVal column As Integer, _
   ByVal columnCount As Integer _
) 
void RemoveColumns( 
   int column,
   int columnCount
)

パラメータ

column
列の削除を開始する列インデックス
columnCount
削除する列数
使用例
次のサンプルコードは、指定した数の列と行を削除します。
FarPoint.Win.Spread.Model.IRangeSupport irs;
DialogResult dlg;
irs = (FarPoint.Win.Spread.Model.IRangeSupport)fpSpread1.ActiveSheet.Models.Data;
dlg = MessageBox.Show("Do you want to remove some columns and rows?", "RemoveColumns/Rows", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
irs.RemoveColumns(3, 496);
irs.RemoveRows(3, 496);
}
Dim irs As FarPoint.Win.Spread.Model.IRangeSupport
Dim dlg As DialogResult
irs = FpSpread1.ActiveSheet.Models.Data
dlg = MessageBox.Show("Do you want to remove some columns and rows?", "RemoveColumns/Rows", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
irs.RemoveColumns(3, 496)
irs.RemoveRows(3, 496)
End If
参照

IRangeSupport インターフェース
IRangeSupport メンバ

 

 


© MESCIUS inc. All rights reserved.